micropython/tests/extmod/ure_error.py

27 wiersze
446 B
Python
Czysty Zwykły widok Historia

# test errors in regex
try:
import ure as re
2017-02-14 22:56:22 +00:00
except ImportError:
try:
import re
except ImportError:
import sys
print("SKIP")
sys.exit()
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'([)')