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 mark
Recipients akitada, akuchling, amaury.forgeotdarc, brian.curtin, collinwinter, ezio.melotti, georg.brandl, gregory.p.smith, jaylogan, jimjjewett, loewis, mark, moreati, mrabarnett, nneonneo, pitrou, r.david.murray, rsc, sjmachin, timehorse, vbr
Date 2010-07-07.08:57:04
SpamBayes Score 0.64360064
Marked as misclassified No
Message-id <1278493026.58.0.490015396368.issue2636@psf.upfronthosting.co.za>
In-reply-to
Content
On the PyPI page:
http://pypi.python.org/pypi/regex/0.1.20100706.1
in the "Subscripting for groups" bullet it gives this pattern:

r"(?<before>.*?)(?<num>\\d+)(?<after>.*)"

Shouldn't this be:

r"(?P<before>.*?)(?P<num>\\d+)(?P<after>.*)"

Or has a new syntax been introduced?
History
Date User Action Args
2010-07-07 08:57:07marksetrecipients: + mark, loewis, akuchling, georg.brandl, collinwinter, gregory.p.smith, jimjjewett, sjmachin, amaury.forgeotdarc, pitrou, nneonneo, rsc, timehorse, vbr, ezio.melotti, mrabarnett, jaylogan, akitada, moreati, r.david.murray, brian.curtin
2010-07-07 08:57:06marksetmessageid: <1278493026.58.0.490015396368.issue2636@psf.upfronthosting.co.za>
2010-07-07 08:57:04marklinkissue2636 messages
2010-07-07 08:57:04markcreate