Skip to content

Instantly share code, notes, and snippets.

@methane
Created November 5, 2014 04:38
Show Gist options
  • Save methane/3f5730e78131eb2217fd to your computer and use it in GitHub Desktop.
Save methane/3f5730e78131eb2217fd to your computer and use it in GitHub Desktop.
$ python -c "import sys; print(sys.stdout.encoding)"
UTF-8
$ python -c "import sys; print(sys.stdout.encoding)" | cat
None
$ PYTHONIOENCODING=utf-8 python -c "import sys; print(sys.stdout.encoding)" | cat
utf-8
$ python3 -c "import sys; print(sys.stdout.encoding)"
UTF-8
$ python3 -c "import sys; print(sys.stdout.encoding)" | cat
UTF-8
$ PYTHONIOENCODING=ascii python3 -c "import sys; print(sys.stdout.encoding)" | cat
ascii
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment