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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, benjamin.peterson, ezio.melotti, lemburg, pitrou, serhiy.storchaka, vstinner
Date 2012-07-18.11:02:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1342609340.13.0.534569661266.issue15379@psf.upfronthosting.co.za>
In-reply-to
Content
In 3.2, narrow build is also broken when the "charmap" is a string:
>>> codecs.charmap_decode(b'\0', 'strict', '\U0002000B')
returns ('𠀋', 1) with a wide unicode build, but ('\ud840', 1) with a narrow build.

3.2 could be fixed to allow characters up to sys.maxunicode, though.
History
Date User Action Args
2012-07-18 11:02:20amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, lemburg, pitrou, vstinner, benjamin.peterson, ezio.melotti, serhiy.storchaka
2012-07-18 11:02:20amaury.forgeotdarcsetmessageid: <1342609340.13.0.534569661266.issue15379@psf.upfronthosting.co.za>
2012-07-18 11:02:19amaury.forgeotdarclinkissue15379 messages
2012-07-18 11:02:19amaury.forgeotdarccreate