Files
TencentOS-tiny/components/language/micropython/tests/extmod/ure_debug.py
2022-09-29 12:10:37 +08:00

11 lines
198 B
Python

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