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 tlynn
Recipients tlynn
Date 2010-02-16.14:04:33
SpamBayes Score 2.6854298e-06
Marked as misclassified No
Message-id <1266329075.25.0.639780854585.issue7940@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.5.2 (r252:60911, Jan 20 2010, 23:14:04) 
[GCC 4.2.4 (Ubuntu 4.2.4-1ubuntu3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> list(re.compile('x').finditer('xxxx', 1, 3))
[<_sre.SRE_Match object at 0x7f2e820f09f0>, <_sre.SRE_Match object at 0x7f2e820f0d98>]
>>> list(re.compile('x').finditer('xxxx', 1, -1))
[]
>>> re.compile('x').findall('xxxx', 1, -1)
[]
>>> re.compile('x').findall('xxxx', 1, 3)
['x', 'x']
History
Date User Action Args
2010-02-16 14:04:35tlynnsetrecipients: + tlynn
2010-02-16 14:04:35tlynnsetmessageid: <1266329075.25.0.639780854585.issue7940@psf.upfronthosting.co.za>
2010-02-16 14:04:33tlynnlinkissue7940 messages
2010-02-16 14:04:33tlynncreate