circuitpython/tests/extmod/ure_split_notimpl.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
206 B
Python
Raw Normal View History

2017-02-14 17:56:22 -05:00
try:
import ure as re
except ImportError:
print("SKIP")
raise SystemExit
2021-03-15 09:57:36 -04:00
r = re.compile("( )")
try:
s = r.split("a b c foobar")
except NotImplementedError:
2021-03-15 09:57:36 -04:00
print("NotImplementedError")