summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/ure_split_notimpl.py
blob: eca3ea512eb07a5ed7673a24d2436fcdcf9da758 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
try:
    import ure as re
except ImportError:
    import sys
    print("SKIP")
    sys.exit()

r = re.compile('( )')
try:
    s = r.split("a b c foobar")
except NotImplementedError:
    print('NotImplementedError')