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.
22 lines
337 B
22 lines
337 B
10 years ago
|
# test errors in regex
|
||
|
|
||
|
try:
|
||
|
import ure as re
|
||
|
except:
|
||
|
import re
|
||
|
|
||
|
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'([)')
|