Top "Ipdb" questions

Interactive Python Debugger, IPython-interface to pdb

Convert generator object to list for debugging

When I'm debugging in Python using IPython, I sometimes hit a break-point and I want to examine a variable that …

python generator ipdb
using ipdb to debug python code in one cell (jupyter or Ipython)

I'm using jupyter (or Ipython) notebook with firefox, and want to debug some python code in the cell. I am …

debugging cell jupyter ipdb
BdbQuit raised when debugging Python with pdb

Recently when adding the pdb debugger to my Python 2.7.10 code, I get this message: Traceback (most recent call last): File "/…

python python-2.7 debugging pdb ipdb
Possible to stop generating *.ipdb *.iobj files by VIsual Studio 2015?

In Visual Studio Community 2015, a Visual C++ project generates a *.ipdb file and a *.iobj file in its Release folder. …

visual-studio visual-c++ visual-studio-2015 ipdb
ImportError: No module named 'ipdb'

I'm new to python and I'm trying to use the interactive python debugger in the standard python package. Whenever I …

python ipdb
PDB - stepping out of a function

Can I step out of a function after stepping into it with step while using pdb / ipdb debugger? And if …

python python-2.7 pdb ipdb
Exiting Python Debugger ipdb

I use ipdb fairly often in a way to just jump to a piece of code that is isolated i.…

python debugging workflow exit ipdb
ipdb debugger, step out of cycle

Is there a command to step out of cycles (say, for or while) while debugging on ipdb without having to …

python debugging ipdb
Get reference to the current exception

$ ./runtests.py -v tests/managers/test_customer.py:CustomerManagerTest.test_register_without_subscription --ipdb ... test_register_without_subscription (tests.managers.…

python debugging exception pdb ipdb
How to quit ipdb while in post-mortem debugging?

I like to inspect error in a Python script by using: $ python3 -m pdb my_script.py This drops me …

python ipython pdb ipdb