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 asvetlov, ezio.melotti, loewis, pitrou, roger.serwy, serhiy.storchaka, vstinner
Date 2012-04-28.18:32:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335637953.25.0.162969191105.issue14304@psf.upfronthosting.co.za>
In-reply-to
Content
I don't see what the patch worse than the current behavior.

Unpatched:
>>> ''.join(map(chr, [76, 246, 119, 105, 115]))
'Löwis'
>>> ''.join(map(chr, [76, 246, 119, 105, 115, 65536]))
'L\xf6wis\U00010000'

Patched:
>>> ''.join(map(chr, [76, 246, 119, 105, 115]))
'Löwis'
>>> ''.join(map(chr, [76, 246, 119, 105, 115, 65536]))
'Löwis\U00010000'

In the case of the Cyrillic alphabet all text becomes unreadable, if there are some non-bmp characters in it.
History
Date User Action Args
2012-04-28 18:32:33serhiy.storchakasetrecipients: + serhiy.storchaka, loewis, pitrou, vstinner, ezio.melotti, roger.serwy, asvetlov
2012-04-28 18:32:33serhiy.storchakasetmessageid: <1335637953.25.0.162969191105.issue14304@psf.upfronthosting.co.za>
2012-04-28 18:32:32serhiy.storchakalinkissue14304 messages
2012-04-28 18:32:32serhiy.storchakacreate