mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
10 lines
174 B
Python
10 lines
174 B
Python
# test printing debugging info when compiling
|
|
try:
|
|
import ure
|
|
except ImportError:
|
|
import sys
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
ure.compile('^a|b[0-9]\w$', ure.DEBUG)
|