[issue3025] batch/IDLE differ: print broken for chraracters>ascii

Martin v. Löwis report at bugs.python.org
Mon Jun 2 07:14:37 CEST 2008


Martin v. Löwis <martin at v.loewis.de> added the comment:

Whether or not that works in 3k depends on your console's encoding; your
program works just fine for me in Linux, with a UTF-8 console.

Python 2.5 was not using a "system page" (whatever that is); it was
sending the bytes to the terminal as-is, which then could interpret them
according to whatever encoding it choses to. Again, on a UTF-8 terminal,
sending individual bytes above 128 is meaningless, so the console had to
deal with it somehow.

I fail to see a Python problem in this report, so I'm closing it as
"works for me".

----------
nosy: +loewis
resolution:  -> works for me
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3025>
_______________________________________


More information about the Python-bugs-list mailing list