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 benjamin.peterson, christian.heimes, ezio.melotti, jdemeyer, mrabarnett, serhiy.storchaka
Date 2013-05-17.17:14:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368810851.28.0.285067419472.issue17998@psf.upfronthosting.co.za>
In-reply-to
Content
Here are some simpler examples of the bug:

re.compile('.*yz', re.S).findall('xyz')
re.compile('.?yz', re.S).findall('xyz')
re.compile('.+yz', re.S).findall('xyz')

Unfortunately I find it difficult to see what's happening when single-stepping through the code because of the macros. :-(
History
Date User Action Args
2013-05-17 17:14:11mrabarnettsetrecipients: + mrabarnett, christian.heimes, benjamin.peterson, ezio.melotti, serhiy.storchaka, jdemeyer
2013-05-17 17:14:11mrabarnettsetmessageid: <1368810851.28.0.285067419472.issue17998@psf.upfronthosting.co.za>
2013-05-17 17:14:11mrabarnettlinkissue17998 messages
2013-05-17 17:14:11mrabarnettcreate