2017-03-09 20:22:56 -05:00
|
|
|
# test errors from bad function calls
|
|
|
|
try:
|
|
|
|
enumerate
|
|
|
|
except:
|
|
|
|
print("SKIP")
|
2017-06-10 13:03:01 -04:00
|
|
|
raise SystemExit
|
2017-03-09 20:22:56 -05:00
|
|
|
|
|
|
|
def test_exc(code, exc):
|
|
|
|
try:
|
|
|
|
exec(code)
|
|
|
|
print("no exception")
|
|
|
|
except exc:
|
|
|
|
print("right exception")
|
|
|
|
except:
|
|
|
|
print("wrong exception")
|
|
|
|
|
|
|
|
# function with keyword args not given a specific keyword arg
|
|
|
|
test_exc("enumerate()", TypeError)
|