Message 99151 - Python tracker (original) (raw)

As stated in , 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>