11 lines
198 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# 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)