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 ezio.melotti, jorendorff, mark.dickinson, meador.inge, mrabarnett, rsc, timehorse
Date 2010-02-11.20:49:43
SpamBayes Score 0.00022576483
Marked as misclassified No
Message-id <1265921386.57.0.457109107816.issue2537@psf.upfronthosting.co.za>
In-reply-to
Content
The re module is addressed in issue #2636.

BTW, my regex module behaves like Ruby:

>>> regex.sub(r"((x|y)*)*", "(\\1, \\2)", "xyyzy", count=1)
'(, y)zy'
>>> regex.sub(r"((x|y+)*)*", "(\\1, \\2)", "xyyzy", count=1)
'(, yy)zy'
History
Date User Action Args
2010-02-11 20:49:46mrabarnettsetrecipients: + mrabarnett, mark.dickinson, rsc, timehorse, jorendorff, ezio.melotti, meador.inge
2010-02-11 20:49:46mrabarnettsetmessageid: <1265921386.57.0.457109107816.issue2537@psf.upfronthosting.co.za>
2010-02-11 20:49:44mrabarnettlinkissue2537 messages
2010-02-11 20:49:43mrabarnettcreate