I recently switched from ipython0.10 to ipython0.11. In ipython0.11, I only see a small snippet of the full traceback when the python debugger engages (i.e. using %pdb
), whereas in ipython0.10 I'd see the full traceback. As far as I can tell, the full traceback is not directly accessible from the pdb command line - you can navigate through it with 'u' but can't see it directly.
So, is there any way to show the full traceback? Such as a configuration parameter?
Or, even more usefully, is there any way to have ipython just show the Exception that was caught, rather than showing where in the code it was caught?
EDIT: Example:
In [1]: pdb
Automatic pdb calling has been turned ON
In [2]: 1/0
> <ipython-input-2-05c9758a9c21>(1)<module>()
-1 1/0
ipdb> q
---------------------------------------------------------------------------
ZeroDivisionError Traceback (most recent call last)
/Users/adam/<ipython-input-2-05c9758a9c21> in <module>()
----> 1 1/0
ZeroDivisionError: integer division or modulo by zero
I'd like to see the ZeroDivisionError before q
'ing out of the pdb.
You could use
sys.excepthook
:From the
sys
module documentation:You can also try starting ipython with the
--xmode
option set toPlain
From IPython reference:
Here are some example usages. Notice the difference in lines for each traceback:
--xmode=Plain
:--xmode=Context
:--xmode=Verbose
:And without specifying a .py file:
--xmode=Plain
:--xmode=Context
:--xmode=Verbose
:Using the Python debugger.