2017-02-14 22:56:22 +00:00
|
|
|
try:
|
|
|
|
import ure as re
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 18:14:16 +01:00
|
|
|
raise SystemExit
|
2017-01-17 06:26:59 +00:00
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
r = re.compile("( )")
|
2017-01-17 06:26:59 +00:00
|
|
|
try:
|
|
|
|
s = r.split("a b c foobar")
|
|
|
|
except NotImplementedError:
|
2020-03-23 02:26:08 +00:00
|
|
|
print("NotImplementedError")
|