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, davechallis, ezio.melotti, serhiy.storchaka, vstinner
Date 2013-06-10.15:57:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370879843.3.0.360732826425.issue18183@psf.upfronthosting.co.za>
In-reply-to
Content
>>> a = chr(0x84b2e)+chr(0x109710)
>>> a.lower()
SystemError: invalid maximum character passed to PyUnicode_New

The MAX_MAXCHAR() macro only works for 'maxchar' values, like 0xff, 0xffff...  in do_upper_or_lower() it's used with arbitrary UCS4 values.
History
Date User Action Args
2013-06-10 15:57:23amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, vstinner, ezio.melotti, serhiy.storchaka, davechallis
2013-06-10 15:57:23amaury.forgeotdarcsetmessageid: <1370879843.3.0.360732826425.issue18183@psf.upfronthosting.co.za>
2013-06-10 15:57:23amaury.forgeotdarclinkissue18183 messages
2013-06-10 15:57:23amaury.forgeotdarccreate