summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/ure_debug.py
blob: 252df21e3098986953ae4edfa73fb7ac5b3ca59f (plain) (blame)
1
2
3
4
5
6
7
8
9
# test printing debugging info when compiling
try:
    import ure
except ImportError:
    import sys
    print("SKIP")
    sys.exit()

ure.compile('^a|b[0-9]\w$', ure.DEBUG)