2017-01-26 12:45:51 +00:00
|
|
|
# test printing debugging info when compiling
|
2017-02-14 22:56:22 +00:00
|
|
|
try:
|
|
|
|
import ure
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2019-08-17 14:50:19 +01:00
|
|
|
ure.DEBUG
|
|
|
|
except (ImportError, AttributeError):
|
2017-02-14 22:56:22 +00:00
|
|
|
print("SKIP")
|
2017-06-10 18:14:16 +01:00
|
|
|
raise SystemExit
|
2017-02-14 22:56:22 +00:00
|
|
|
|
2017-01-26 12:45:51 +00:00
|
|
|
ure.compile("^a|b[0-9]\w$", ure.DEBUG)
|