blob: 6a2dc8cb959b20f5288660811a85b7c7b0ff5906 (
plain)
1
2
3
4
5
6
7
8
9
|
test_sre
sre.match(r'(x)*?y', 50000*'x'+'y').span() FAILED
Traceback (most recent call last):
File "../lib/test\test_sre.py", line 18, in test
r = eval(expression)
File "<string>", line 0, in ?
File "c:\pythonware\py21\python-2.1\lib\sre.py", line 52, in match
return _compile(pattern, flags).match(string)
RuntimeError: maximum recursion limit exceeded
|