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 mrabarnett
Recipients belopolsky, mark.dickinson, mrabarnett, stiv
Date 2010-12-14.19:47:12
SpamBayes Score 1.8259754e-05
Marked as misclassified No
Message-id <1292356048.22.0.813686928575.issue10703@psf.upfronthosting.co.za>
In-reply-to
Content
The regex module is intended to replace the re module, so its default behaviour is the same: in Python 2, regexes default to matching ASCII, and in Python 3, they default to matching Unicode.

If you want to use a regex on a Unicode string in Python 2 then you need to set the Unicode flag, either by providing the UNICODE flag or by putting "(?u)" in the regex itself.
History
Date User Action Args
2010-12-14 19:47:28mrabarnettsetrecipients: + mrabarnett, mark.dickinson, belopolsky, stiv
2010-12-14 19:47:28mrabarnettsetmessageid: <1292356048.22.0.813686928575.issue10703@psf.upfronthosting.co.za>
2010-12-14 19:47:12mrabarnettlinkissue10703 messages
2010-12-14 19:47:12mrabarnettcreate