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 akitada, akuchling, amaury.forgeotdarc, collinwinter, doerwalter, ezio.melotti, georg.brandl, gregory.p.smith, jaylogan, jimjjewett, loewis, mark, moreati, mrabarnett, nneonneo, pitrou, rsc, sjmachin, timehorse, vbr
Date 2009-08-10.22:42:18
SpamBayes Score 6.380945e-08
Marked as misclassified No
Message-id <1249944139.74.0.753457993344.issue2636@psf.upfronthosting.co.za>
In-reply-to
Content
issue2636-20090810#3.zip adds more Unicode character properties such as
"\p{Lowercase_Letter}", and also Unicode script ranges.

In addition, the 'findall' method now accepts an 'overlapped' argument
for finding overlapped matches. For example:

>>> regex.findall(r"(..)", "abc")
['ab']
>>> regex.findall(r"(..)", "abc", overlapped=True)
['ab', 'bc']
History
Date User Action Args
2009-08-10 22:42:19mrabarnettsetrecipients: + mrabarnett, loewis, akuchling, doerwalter, georg.brandl, collinwinter, gregory.p.smith, jimjjewett, sjmachin, amaury.forgeotdarc, pitrou, nneonneo, rsc, timehorse, mark, vbr, ezio.melotti, jaylogan, akitada, moreati
2009-08-10 22:42:19mrabarnettsetmessageid: <1249944139.74.0.753457993344.issue2636@psf.upfronthosting.co.za>
2009-08-10 22:42:18mrabarnettlinkissue2636 messages
2009-08-10 22:42:18mrabarnettcreate