2015-03-10 17:47:43 +00:00
|
|
|
# test errors in regex
|
|
|
|
|
|
|
|
try:
|
|
|
|
import ure as re
|
2017-02-15 01:56:22 +03:00
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
import re
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 20:14:16 +03:00
|
|
|
raise SystemExit
|
2015-03-10 17:47:43 +00:00
|
|
|
|
2021-03-15 19:27:36 +05:30
|
|
|
|
2015-03-10 17:47:43 +00:00
|
|
|
def test_re(r):
|
|
|
|
try:
|
|
|
|
re.compile(r)
|
|
|
|
print("OK")
|
2021-03-15 19:27:36 +05:30
|
|
|
except: # uPy and CPy use different errors, so just ignore the type
|
2015-03-10 17:47:43 +00:00
|
|
|
print("Error")
|
|
|
|
|
2021-03-15 19:27:36 +05:30
|
|
|
|
|
|
|
test_re(r"?")
|
|
|
|
test_re(r"*")
|
|
|
|
test_re(r"+")
|
|
|
|
test_re(r")")
|
|
|
|
test_re(r"[")
|
|
|
|
test_re(r"([")
|
|
|
|
test_re(r"([)")
|
2021-04-23 12:26:42 -07:00
|
|
|
test_re(r"[a\]")
|