mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
8 lines
138 B
Python
8 lines
138 B
Python
import ure as re
|
|
|
|
r = re.compile('( )')
|
|
try:
|
|
s = r.split("a b c foobar")
|
|
except NotImplementedError:
|
|
print('NotImplementedError')
|