Top "Pdb" questions

This tag refers to the Python debugger.

Python debugger tells me value of Numpy array is "*** Newest frame"

What does this mean? My function gets two numpy arrays from a python/c library. After that function call I …

python numpy pdb
Python-pdb skip code (as in "not execute")

Is there a way to skip a line or two altogether in pdb? Say I have a pdb session: > …

python debugging pdb
pdb/ipdb for python break on editable condition

Say I have code the following code: for i in range(100): print i In general I can add one line …

python pdb
How to set breakpoints in a library module (pdb)

I am debugging a python script which sys.path looks like sys.path = ['','home/my_library', ..] I'm having troubles …

python python-2.7 pdb