2017-01-26 23:45:51 +11:00
|
|
|
# test printing debugging info when compiling
|
2017-02-15 01:56:22 +03:00
|
|
|
try:
|
2023-08-22 11:15:46 -04:00
|
|
|
import re
|
2021-04-23 12:26:42 -07:00
|
|
|
|
2023-08-22 11:15:46 -04:00
|
|
|
re.DEBUG
|
2021-04-23 12:26:42 -07:00
|
|
|
except (ImportError, AttributeError):
|
2017-02-15 01:56:22 +03:00
|
|
|
print("SKIP")
|
2017-06-10 20:14:16 +03:00
|
|
|
raise SystemExit
|
2017-02-15 01:56:22 +03:00
|
|
|
|
2023-08-22 11:15:46 -04:00
|
|
|
re.compile("^a|b[0-9]\w$", re.DEBUG)
|