2017-02-14 17:56:22 -05:00
|
|
|
try:
|
|
|
|
import ure as re
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2017-01-17 01:26:59 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
r = re.compile("( )")
|
2017-01-17 01:26:59 -05:00
|
|
|
try:
|
|
|
|
s = r.split("a b c foobar")
|
|
|
|
except NotImplementedError:
|
2021-03-15 09:57:36 -04:00
|
|
|
print("NotImplementedError")
|