summaryrefslogtreecommitdiff
path: root/tests/extmod/ure_error.py
blob: a99a47f97e9232890ad3186244b1113a4e362fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# test errors in regex

try:
    import ure as re
except ImportError:
    try:
        import re
    except ImportError:
        print("SKIP")
        raise SystemExit


def test_re(r):
    try:
        re.compile(r)
        print("OK")
    except:  # uPy and CPy use different errors, so just ignore the type
        print("Error")


test_re(r"?")
test_re(r"*")
test_re(r"+")
test_re(r")")
test_re(r"[")
test_re(r"([")
test_re(r"([)")