circuitpython/tests/extmod/ure_split_notimpl.py

13 lines
215 B
Python
Raw Normal View History

2017-02-14 17:56:22 -05:00
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')