Hi,
Can a stack trace be generated for the exception that the program catches using except or except IOError etc
eg:
Thanks
Can a stack trace be generated for the exception that the program catches using except or except IOError etc
eg:
Code:
try: raise Exception except Exception,e: print the stack trace that caused this exception
Comment