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 jcerruti
Recipients jcerruti
Date 2011-05-20.22:47:51
SpamBayes Score 0.00013823582
Marked as misclassified No
Message-id <1305931672.68.0.439399541624.issue12130@psf.upfronthosting.co.za>
In-reply-to
Content
Trying to use regex 0.1.2011051 with the overlapped=True feature

It works great, unless I have the 'start of string' (caret) character in my regular expression:


>>> regex.findall(r"a.*b","abadalaba",overlapped=True)
['abadalab', 'adalab', 'alab', 'ab']
>>> regex.findall(r"^a.*b","abadalaba",overlapped=True)
['abadalab']
History
Date User Action Args
2011-05-20 22:47:52jcerrutisetrecipients: + jcerruti
2011-05-20 22:47:52jcerrutisetmessageid: <1305931672.68.0.439399541624.issue12130@psf.upfronthosting.co.za>
2011-05-20 22:47:51jcerrutilinkissue12130 messages
2011-05-20 22:47:51jcerruticreate