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