2017-02-14 17:56:22 -05:00
|
|
|
try:
|
2022-08-18 02:57:45 -04:00
|
|
|
import re
|
2017-02-14 17:56:22 -05:00
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2017-01-17 01:26:59 -05:00
|
|
|
|
|
|
|
r = re.compile("( )")
|
|
|
|
try:
|
|
|
|
s = r.split("a b c foobar")
|
|
|
|
except NotImplementedError:
|
|
|
|
print("NotImplementedError")
|