You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
387 B
26 lines
387 B
10 years ago
|
# test errors in regex
|
||
|
|
||
|
try:
|
||
2 years ago
|
import re
|
||
8 years ago
|
except ImportError:
|
||
2 years ago
|
print("SKIP")
|
||
|
raise SystemExit
|
||
10 years ago
|
|
||
5 years ago
|
|
||
10 years ago
|
def test_re(r):
|
||
|
try:
|
||
|
re.compile(r)
|
||
|
print("OK")
|
||
5 years ago
|
except: # uPy and CPy use different errors, so just ignore the type
|
||
10 years ago
|
print("Error")
|
||
|
|
||
5 years ago
|
|
||
|
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\]")
|