2017-01-26 07:45:51 -05:00
|
|
|
# test printing debugging info when compiling
|
2017-02-14 17:56:22 -05:00
|
|
|
try:
|
2022-08-18 02:57:45 -04:00
|
|
|
import re
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2022-08-18 02:57:45 -04:00
|
|
|
re.DEBUG
|
2019-08-17 09:50:19 -04:00
|
|
|
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
|
|
|
|
2022-08-18 02:57:45 -04:00
|
|
|
re.compile("^a|b[0-9]\w$", re.DEBUG)
|