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 serhiy.storchaka
Recipients Ringding, belopolsky, dangra, ezio.melotti, lemburg, pitrou, serhiy.storchaka, sjmachin, spatz123, vstinner
Date 2012-05-17.16:35:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337272524.68.0.566945550119.issue8271@psf.upfronthosting.co.za>
In-reply-to
Content
Looks like issue14738 fixes this bug for Python 3.3.

>>> print(ascii(b"\xc2\x41\x42".decode('utf8', 'replace')))
'\ufffdAB'
>>> print(ascii(b"\xf1ABCD".decode('utf8', 'replace')))
'\ufffdABCD'
History
Date User Action Args
2012-05-17 16:35:24serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, sjmachin, belopolsky, pitrou, vstinner, ezio.melotti, Ringding, dangra, spatz123
2012-05-17 16:35:24serhiy.storchakasetmessageid: <1337272524.68.0.566945550119.issue8271@psf.upfronthosting.co.za>
2012-05-17 16:35:22serhiy.storchakalinkissue8271 messages
2012-05-17 16:35:22serhiy.storchakacreate