summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/ure_error.py
blob: 1e9f66a9e5b9ed73b0c3e2c6fe040ce2dde9b495 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# test errors in regex

try:
    import ure as re
except:
    import re

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'([)')