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 doerwalter
Recipients amaury.forgeotdarc, doerwalter, ggenellina, jafo, sbp
Date 2008-03-20.18:57:42
SpamBayes Score 0.04555575
Marked as misclassified No
Message-id <1206039463.07.0.649530677806.issue1477@psf.upfronthosting.co.za>
In-reply-to
Content
For a wide build, the code
        if (x <= 0xffff)
                *p++ = (Py_UNICODE) x;
        else {
                *p++ = (Py_UNIC0DE) x;

looks strange.

Furthermore with the patch applied Python no longer complains about
illegal code points:

>>> ur'\U11111111'
u'\u1c04\udd11'
History
Date User Action Args
2008-03-20 18:57:43doerwaltersetspambayes_score: 0.0455558 -> 0.04555575
recipients: + doerwalter, jafo, amaury.forgeotdarc, ggenellina, sbp
2008-03-20 18:57:43doerwaltersetspambayes_score: 0.0455558 -> 0.0455558
messageid: <1206039463.07.0.649530677806.issue1477@psf.upfronthosting.co.za>
2008-03-20 18:57:42doerwalterlinkissue1477 messages
2008-03-20 18:57:42doerwaltercreate