blob: 7a07ede2d437330c3ce9386afdba6c790ab6c685 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# test printing debugging info when compiling
try:
import ure
ure.DEBUG
except (ImportError, AttributeError):
print("SKIP")
raise SystemExit
ure.compile("^a|b[0-9]\w$", ure.DEBUG)
|