2015-03-10 13:47:43 -04:00
|
|
|
# test errors in regex
|
|
|
|
|
|
|
|
try:
|
2022-08-18 02:57:45 -04:00
|
|
|
import re
|
2017-02-14 17:56:22 -05:00
|
|
|
except ImportError:
|
2022-08-18 02:57:45 -04:00
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-03-10 13:47:43 -04:00
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2015-03-10 13:47:43 -04:00
|
|
|
def test_re(r):
|
|
|
|
try:
|
|
|
|
re.compile(r)
|
|
|
|
print("OK")
|
|
|
|
except: # uPy and CPy use different errors, so just ignore the type
|
|
|
|
print("Error")
|
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2015-03-10 13:47:43 -04:00
|
|
|
test_re(r"?")
|
|
|
|
test_re(r"*")
|
|
|
|
test_re(r"+")
|
|
|
|
test_re(r")")
|
|
|
|
test_re(r"[")
|
|
|
|
test_re(r"([")
|
|
|
|
test_re(r"([)")
|
2019-10-16 01:56:29 -04:00
|
|
|
test_re(r"[a\]")
|