Automatically start the debugger on an exceptionOverview
When Python runs a script and an uncatched exception is raised, a traceback is printed and the script is terminated. Python2.1 has introduced sys.excepthook, which can be used to override the handling of uncaught exceptions. This allows to automatically start the debugger on an unexpected exception, even if python is not running in interactive mode.
NEW
Fixed some bugs.
Automatically start the debugger on an exceptionInformation