[issue10703] Regex 0.1.20101210

2010-12-15 Thread Steve Moran
Steve Moran added the comment: (Forehead slap.) On Tue, 14 Dec 2010, Matthew Barnett wrote: > > Matthew Barnett added the comment: > > 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 > Pyth

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: mark.dickinson -> nosy: -mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailin

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Matthew Barnett
Matthew Barnett added the comment: 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 yo

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> mark.dickinson nosy: +mark.dickinson, mrabarnett ___ Python tracker ___ ___ Python-bugs-

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Regex 0.1.20101210 is not part of the standard Python distribution, so this bug report is invalid. -- nosy: +belopolsky resolution: -> invalid status: open -> closed superseder: -> Regexp 2.7 (modifications to current re 2.2.2) ___

[issue10703] Regex 0.1.20101210

2010-12-14 Thread Steve Moran
New submission from Steve Moran : The regex package doesn't seem to correctly implement the single grapheme match "\X" (\P{M}\p{M}*) for pre-Python 3. I'm using the string "íi-te" (i, U+0301, i, -, t, e -- where U+0301 is Unicode COMBINING ACUTE ACCENT), reading it in from a file to bypass Uni