if i do
try:
something
except TypeError, IndexError:
passonly the first error will get caught. I dont want to use Exception and catch all errors, but just 2. how can i do that? -- http://mail.python.org/mailman/listinfo/python-list
if i do
try:
something
except TypeError, IndexError:
passonly the first error will get caught. I dont want to use Exception and catch all errors, but just 2. how can i do that? -- http://mail.python.org/mailman/listinfo/python-list