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