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 georg.brandl
Recipients georg.brandl, pitrou
Date 2008-08-24.20:58:27
SpamBayes Score 0.03774612
Marked as misclassified No
Message-id <1219611508.6.0.918064592289.issue3665@psf.upfronthosting.co.za>
In-reply-to
Content
These concerns indeed must be handled: On narrow unicode builds, chars >
0xffff must be converted to surrogates. In ranges, they should raise an
error.

Additionally, this should at least raise an error too:

>>> re.compile("[\U00100000]").match("\U00100000").group()
'\udbc0'
History
Date User Action Args
2008-08-24 20:58:28georg.brandlsetrecipients: + georg.brandl, pitrou
2008-08-24 20:58:28georg.brandlsetmessageid: <1219611508.6.0.918064592289.issue3665@psf.upfronthosting.co.za>
2008-08-24 20:58:27georg.brandllinkissue3665 messages
2008-08-24 20:58:27georg.brandlcreate