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 adi, akuchling, effbot, ezio.melotti, gpolo, greg@gregdetre.co.uk, gvanrossum, johnsonm, kristall, mathieu.clabaut, mrabarnett, ostkamp, pitrou, rsc, timehorse
Date 2010-02-10.03:22:48
SpamBayes Score 0.0049622655
Marked as misclassified No
Message-id <1265772170.62.0.16136308443.issue1160@psf.upfronthosting.co.za>
In-reply-to
Content
As stated in msg73781, this is being addressed in issue #2636.

My regex module handles the test case without complaint:

>>> import regex
>>> r = regex.compile('|'.join('%d'%x for x in range(7000)))
>>> r.match("1000")
<_regex.REGEX_Match object at 0x015D2920>
>>> r.match("6999")
<_regex.REGEX_Match object at 0x016DDC20>
History
Date User Action Args
2010-02-10 03:22:50mrabarnettsetrecipients: + mrabarnett, gvanrossum, effbot, akuchling, pitrou, ostkamp, rsc, timehorse, mathieu.clabaut, gpolo, ezio.melotti, greg@gregdetre.co.uk, adi, johnsonm, kristall
2010-02-10 03:22:50mrabarnettsetmessageid: <1265772170.62.0.16136308443.issue1160@psf.upfronthosting.co.za>
2010-02-10 03:22:48mrabarnettlinkissue1160 messages
2010-02-10 03:22:48mrabarnettcreate