Post mortem debugging IDE

Fernando Pérez fperez528 at yahoo.com
Sat Nov 23 15:23:30 EST 2002


Irmen de Jong wrote:

> What Python IDE supports post mortem debugging?

Try IPython: http://www-hep.colorado.edu/~fperez/ipython/

Type pdb at the prompt. Then, at any uncaught exception the pdb debugger will 
be triggered in post-mortem mode. You can turn the feature on/off by typing 
'pdb' at the prompt. It also interfaces to the profiler (see docs for 
details).

Cheers,

f.



More information about the Python-list mailing list