We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sys.stdout.encoding gives this error. Also sys.stdin.encoding gives 'UTF8', while python gives 'UTF-8' for both cases.
sys.stdout.encoding
sys.stdin.encoding
'UTF8'
'UTF-8'
This commit makes bpython work (naturally stdin is still different than in standard python):
bpython version 0.15 on top of Python 3.5.2 /usr/bin/python >>> import sys >>> sys.stdin.encoding 'UTF8' >>> sys.stdout.encoding 'UTF-8'
sys.stdout.encodinggives this error.Also
sys.stdin.encodinggives'UTF8', while python gives'UTF-8'for both cases.This commit makes bpython work (naturally stdin is still different than in standard python):