DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / extmod / re_stack_overflow.py
12345678910
try: import re except ImportError: print("SKIP") raise SystemExit try: re.match("(a*)*", "aaa") except RuntimeError: print("RuntimeError")