circuitpython/tests/extmod/ure_stack_overflow.py
2023-08-22 12:57:47 -04:00

11 lines
160 B
Python

try:
import re
except ImportError:
print("SKIP")
raise SystemExit
try:
re.match("(a*)*", "aaa")
except RuntimeError:
print("RuntimeError")