2017-01-26 07:45:51 -05:00
|
|
|
# test printing debugging info when compiling
|
2017-02-14 17:56:22 -05:00
|
|
|
try:
|
2023-08-22 11:15:46 -04:00
|
|
|
import re
|
2021-04-23 15:26:42 -04:00
|
|
|
|
2023-08-22 11:15:46 -04:00
|
|
|
re.DEBUG
|
2021-04-23 15:26:42 -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
|
|
|
|
2023-08-22 11:15:46 -04:00
|
|
|
re.compile("^a|b[0-9]\w$", re.DEBUG)
|