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, bupjae, ezio.melotti
Date 2009-02-02.18:05:46
SpamBayes Score 0.0004785432
Marked as misclassified No
Message-id <1233597947.96.0.779536968107.issue5127@psf.upfronthosting.co.za>
In-reply-to
Content
There were non-ascii characters in the Windows license file. This was
corrected with r67860.


> I believe that chr(0x10000) and chr(0x11000) should have the 
> opposite behavior.

This other problem is because on a narrow unicode build,
Py_UNICODE_ISPRINTABLE takes a 16bit integer.
And indeed, 

>>> unicodedata.category(chr(0x10000 % 65536))
'Cc'
>>> unicodedata.category(chr(0x11000 % 65536))
'Lo'
History
Date User Action Args
2009-02-02 18:05:48amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, ezio.melotti, bupjae
2009-02-02 18:05:47amaury.forgeotdarcsetmessageid: <1233597947.96.0.779536968107.issue5127@psf.upfronthosting.co.za>
2009-02-02 18:05:46amaury.forgeotdarclinkissue5127 messages
2009-02-02 18:05:46amaury.forgeotdarccreate