From 91061576949743a38b759b5e6e86a43058279dbf Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Tue, 3 Nov 2015 13:50:43 +0100 Subject: .exports: Add `PYTHONIOENCODING` https://docs.python.org/2/using/cmdline.html#envvar-PYTHONIOENCODING --- .exports | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.exports b/.exports index 4654085..272d9a3 100644 --- a/.exports +++ b/.exports @@ -8,6 +8,9 @@ export NODE_REPL_HISTORY_SIZE='32768'; # Use sloppy mode by default, matching web browsers. export NODE_REPL_MODE='sloppy'; +# Make Python use UTF-8 encoding for output to stdin, stdout, and stderr. +export PYTHONIOENCODING='UTF-8'; + # Increase Bash history size. Allow 32³ entries; the default is 500. export HISTSIZE='32768'; export HISTFILESIZE="${HISTSIZE}"; -- cgit v1.2.3