circuitpython/tests/extmod/ure_debug.py
Scott Shawcroft b057fb8a4b
codeformat
2021-04-19 22:22:44 -07:00

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)