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 lanyjie, mrabarnett
Date 2010-11-25.17:24:27
SpamBayes Score 0.00048587908
Marked as misclassified No
Message-id <1290705869.48.0.920711702276.issue10532@psf.upfronthosting.co.za>
In-reply-to
Content
The spans say this:

>>> for m in re.finditer('((.d.)*)*', 'adb'):
    print(m.span())

    
(0, 3)
(3, 3)

There's an non-empty match followed by an empty match.

IHMO, not a bug.
History
Date User Action Args
2010-11-25 17:24:29mrabarnettsetrecipients: + mrabarnett, lanyjie
2010-11-25 17:24:29mrabarnettsetmessageid: <1290705869.48.0.920711702276.issue10532@psf.upfronthosting.co.za>
2010-11-25 17:24:27mrabarnettlinkissue10532 messages
2010-11-25 17:24:27mrabarnettcreate