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