1# test errors from bad function calls 2try: 3 enumerate 4except: 5 print("SKIP") 6 raise SystemExit 7 8# function with keyword args not given a specific keyword arg 9try: 10 enumerate() 11except TypeError: 12 print('TypeError') 13