summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/re_split_notimpl.py
blob: 7ddec9fa03af3cad1c3b3fe3453186730469c0c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
try:
    import re
except ImportError:
    print("SKIP")
    raise SystemExit

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