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 BreamoreBoy, ezio.melotti, mrabarnett, timehorse, tlynn
Date 2013-05-23.22:44:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369349042.37.0.320957394843.issue7940@psf.upfronthosting.co.za>
In-reply-to
Content
Yes. As msg99456 suggests, I fixed it the my source code before posting.

Compare re in Python 3.3.2:

>>> re.compile('x').findall('xxxx', 1, 3)
['x', 'x']
>>> re.compile('x').findall('xxxx', 1, -1)
[]

with regex:

>>> regex.compile('x').findall('xxxx', 1, 3)
['x', 'x']
>>> regex.compile('x').findall('xxxx', 1, -1)
['x', 'x']
History
Date User Action Args
2013-05-23 22:44:02mrabarnettsetrecipients: + mrabarnett, tlynn, timehorse, ezio.melotti, BreamoreBoy
2013-05-23 22:44:02mrabarnettsetmessageid: <1369349042.37.0.320957394843.issue7940@psf.upfronthosting.co.za>
2013-05-23 22:44:02mrabarnettlinkissue7940 messages
2013-05-23 22:44:02mrabarnettcreate