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 sable
Recipients pitrou, sable, vstinner
Date 2011-02-14.15:56:43
SpamBayes Score 0.007146045
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
$ LANG=C ./python -Wd -E -bb -c "import sys; print(ascii(sys.argv))" $(echo -ne "abc\xff")['-c', 'abc\xff']
['-c', 'abc\xff']
$ LANG=C ./python -Wd -E -bb -c "import locale; print(locale.nl_langinfo(locale.CODESET))"
ISO8859-1
$ LANG=C ./python -Wd -E -bb -c "import locale; print(locale.getpreferredencoding())"
ISO8859-1
History
Date User Action Args
2011-02-14 15:56:44sablesetrecipients: + sable, pitrou, vstinner
2011-02-14 15:56:44sablesetmessageid: <[email protected]>
2011-02-14 15:56:43sablelinkissue11193 messages
2011-02-14 15:56:43sablecreate