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.

作者 vstinner
收信人 ezio.melotti, methane, vstinner
日期 2017-01-11.23:00:07
SpamBayes Score -1.0
Marked as misclassified
Message-id <1484175607.54.0.0577289957782.issue29240@psf.upfronthosting.co.za>
In-reply-to
内容
Hum, pep540-3.patch doesn't work if the locale encoding is different than ASCII and UTF-8. argv must be reencoded:

$ LC_ALL=fr_FR ./python -X utf8 -c 'import sys; print(ascii(sys.argv))' $(echo -ne "\xff")
['-c', '\xff']

The result should not depend on the locale, it should be the same than:

$ LC_ALL=fr_FR.utf8 ./python -X utf8 -c 'import sys; print(ascii(sys.argv))' $(echo -ne "\xff")
['-c', '\udcff']

$ LC_ALL=C ./python -X utf8 -c 'import sys; print(ascii(sys.argv))' $(echo -ne "\xff")
['-c', '\udcff']
历史
日期 用户 动作 参数
2017-01-11 23:00:07vstinner修改recipients: + vstinner, ezio.melotti, methane
2017-01-11 23:00:07vstinner修改messageid: <1484175607.54.0.0577289957782.issue29240@psf.upfronthosting.co.za>
2017-01-11 23:00:07vstinner链接issue29240 messages
2017-01-11 23:00:07vstinner创建