micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
try:
|
||||
import ure as re
|
||||
except ImportError:
|
||||
try:
|
||||
import re
|
||||
except ImportError:
|
||||
print("SKIP")
|
||||
raise SystemExit
|
||||
|
||||
try:
|
||||
re.match("(a*)*", "aaa")
|
||||
except RuntimeError:
|
||||
print("RuntimeError")
|
Reference in New Issue
Block a user