micropython/tests/extmod/re_debug.py

11 wiersze
194 B
Python

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