circuitpython/tests/extmod/ure_debug.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
198 B
Python
Raw Normal View History

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