circuitpython/tests/extmod/ure_debug.py

9 lines
165 B
Python
Raw Normal View History

# test printing debugging info when compiling
2017-02-14 17:56:22 -05:00
try:
import ure
except ImportError:
print("SKIP")
raise SystemExit
2017-02-14 17:56:22 -05:00
2021-03-15 09:57:36 -04:00
ure.compile("^a|b[0-9]\w$", ure.DEBUG)