This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author THRlWiTi
Recipients THRlWiTi, matrixise, serhiy.storchaka, terry.reedy
Date 2015-04-29.14:35:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430318106.44.0.498114931567.issue19625@psf.upfronthosting.co.za>
In-reply-to
Content
On cmd and powershell:

>python -c "import sys; print(sys.getdefaultencoding());"
utf-8
>python -c "import sys; print(sys.stdout.encoding);"
cp720

In IDLE:
>>> import sys; print(sys.getdefaultencoding());
utf-8
>>> sys.stdout.encoding
'cp1256'
History
Date User Action Args
2015-04-29 14:35:06THRlWiTisetrecipients: + THRlWiTi, terry.reedy, serhiy.storchaka, matrixise
2015-04-29 14:35:06THRlWiTisetmessageid: <1430318106.44.0.498114931567.issue19625@psf.upfronthosting.co.za>
2015-04-29 14:35:06THRlWiTilinkissue19625 messages
2015-04-29 14:35:06THRlWiTicreate