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
|
|
|
|
|
|
|
r = re.compile('( )')
|
|
|
|
try:
|
|
|
|
s = r.split("a b c foobar")
|
|
|
|
except NotImplementedError:
|
|
|
|
print('NotImplementedError')
|