circuitpython/tests/extmod/ure_debug.py
2021-03-15 19:27:36 +05:30

9 lines
165 B
Python

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