circuitpython/tests/extmod/ure_error.py

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

29 lines
453 B
Python
Raw Normal View History

# test errors in regex
try:
import ure as re
2017-02-14 17:56:22 -05:00
except ImportError:
try:
import re
except ImportError:
print("SKIP")
raise SystemExit
2021-03-15 09:57:36 -04:00
def test_re(r):
try:
re.compile(r)
print("OK")
2021-03-15 09:57:36 -04:00
except: # uPy and CPy use different errors, so just ignore the type
print("Error")
2021-03-15 09:57:36 -04:00
test_re(r"?")
test_re(r"*")
test_re(r"+")
test_re(r")")
test_re(r"[")
test_re(r"([")
test_re(r"([)")
test_re(r"[a\]")