2017-03-10 01:22:56 +00:00
|
|
|
# test errors from bad function calls
|
|
|
|
try:
|
|
|
|
enumerate
|
|
|
|
except:
|
|
|
|
print("SKIP")
|
2017-06-10 18:03:01 +01:00
|
|
|
raise SystemExit
|
2017-03-10 01:22:56 +00: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)
|