micropython/tests/extmod/ure_debug.py

10 lines
174 B
Python
Raw Normal View History

# test printing debugging info when compiling
2017-02-15 06:56:22 +08:00
try:
import ure
except ImportError:
import sys
print("SKIP")
sys.exit()
ure.compile('^a|b[0-9]\w$', ure.DEBUG)