Re: handling uncaught exceptions with pdb?

2008-09-12 Thread R. Bernstein
"Diez B. Roggisch" <[EMAIL PROTECTED]> writes: > R. Bernstein schrieb: >> Paul Rubin writes: >> >>> I think I've asked about this before, but is there a way to set up >>> Python to handle uncaught exceptions with pdb? I know about setting >>> sys.except_hook to somethin

Re: handling uncaught exceptions with pdb?

2008-09-12 Thread Simon Brunning
2008/9/10 Paul Rubin <"http://phr.cx"@nospam.invalid>: > I think I've asked about this before, but is there a way to set up > Python to handle uncaught exceptions with pdb? http://code.activestate.com/recipes/65287/ -- Cheers, Simon B. [EMAIL PROTECTED] http://www.brunningonline.net/simon/blog/

Re: handling uncaught exceptions with pdb?

2008-09-12 Thread Thomas Heller
Paul Rubin schrieb: > I think I've asked about this before, but is there a way to set up > Python to handle uncaught exceptions with pdb? I know about setting > sys.except_hook to something that calls pdb, but this is normally done > at the outer level of a program, and by the time that hook gets

Re: handling uncaught exceptions with pdb?

2008-09-12 Thread Diez B. Roggisch
R. Bernstein schrieb: Paul Rubin writes: I think I've asked about this before, but is there a way to set up Python to handle uncaught exceptions with pdb? I know about setting sys.except_hook to something that calls pdb, but this is normally done at the outer level o

Re: handling uncaught exceptions with pdb?

2008-09-12 Thread R. Bernstein
Paul Rubin writes: > I think I've asked about this before, but is there a way to set up > Python to handle uncaught exceptions with pdb? I know about setting > sys.except_hook to something that calls pdb, but this is normally done > at the outer level of a program, and

handling uncaught exceptions with pdb?

2008-09-10 Thread Paul Rubin
I think I've asked about this before, but is there a way to set up Python to handle uncaught exceptions with pdb? I know about setting sys.except_hook to something that calls pdb, but this is normally done at the outer level of a program, and by the time that hook gets called, the exception has al