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

11 lines
194 B
Python

# test printing debugging info when compiling
try:
import re
re.DEBUG
except (ImportError, AttributeError):
print("SKIP")
raise SystemExit
re.compile("^a|b[0-9]\w$", re.DEBUG)