Is this normal behavior (couldn't find any clarifications on that)?
ipython -c "import sys, os; print(os.environ['PYTHONIOENCODING']); print(sys.stdin.encoding); print(sys.stdout.encoding);"
ISO-8859-13
utf-8
utf-8
versus:
python -c "import sys, os; print(os.environ['PYTHONIOENCODING']); print(sys.stdin.encoding); print(sys.stdout.encoding);"
ISO-8859-13
ISO-8859-13
ISO-8859-13
Is this normal behavior (couldn't find any clarifications on that)?
versus: