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 amaury.forgeotdarc, effbot, giampaolo.rodola, gregory.p.smith, mrabarnett, pitrou, terry.reedy, timehorse
Date 2008-09-22.00:49:59
SpamBayes Score 0.019374127
Marked as misclassified No
Message-id <1222044603.88.0.0552703819672.issue3825@psf.upfronthosting.co.za>
In-reply-to
Content
regex_2.6rc2+3.diff adds reverse searching with the re.REVERSE/re.R and
"(?r)" flag.

This gives results such as:

>>> re.findall("(\w+)", "one two three")
['one', 'two', 'three']
>>> re.findall("(?r)(\w+)", "one two three")
['three', 'two', 'one']

See #516762.
History
Date User Action Args
2008-09-22 00:50:04mrabarnettsetrecipients: + mrabarnett, effbot, terry.reedy, gregory.p.smith, amaury.forgeotdarc, pitrou, giampaolo.rodola, timehorse
2008-09-22 00:50:03mrabarnettsetmessageid: <1222044603.88.0.0552703819672.issue3825@psf.upfronthosting.co.za>
2008-09-22 00:50:03mrabarnettlinkissue3825 messages
2008-09-22 00:50:02mrabarnettcreate