micropython/tests/extmod/re_debug.py
Jim Mussared 4216bc7d13 tests: Replace umodule with module everywhere.
This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2023-06-08 17:54:24 +10:00

11 lines
194 B
Python

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