2015-03-10 13:47:43 -04:00
|
|
|
# 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")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
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")
|
|
|
|
|
|
|
|
test_re(r'?')
|
|
|
|
test_re(r'*')
|
|
|
|
test_re(r'+')
|
|
|
|
test_re(r')')
|
|
|
|
test_re(r'[')
|
|
|
|
test_re(r'([')
|
|
|
|
test_re(r'([)')
|