2017-01-26 07:45:51 -05:00
|
|
|
# test printing debugging info when compiling
|
2017-02-14 17:56:22 -05:00
|
|
|
try:
|
|
|
|
import ure
|
2021-04-23 15:26:42 -04:00
|
|
|
|
|
|
|
ure.DEBUG
|
|
|
|
except (ImportError, AttributeError):
|
2017-02-14 17:56:22 -05:00
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2017-02-14 17:56:22 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
ure.compile("^a|b[0-9]\w$", ure.DEBUG)
|