cnb wrote:
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
what you're doing is assigning the value of TypeError to the name IndexError try: somthing except (TypeError, IndexError): pass use except (TypeError, IndexError), e: print e if you want to print the error -- http://mail.python.org/mailman/listinfo/python-list
