Top "Pdb" questions

This tag refers to the Python debugger.

Step-by-step debugging with IPython

From what I have read, there are two ways to debug code in Python: With a traditional debugger such as …

python debugging emacs ipython pdb
What is the right way to debug in iPython notebook?

As I know, %debug magic can do debug within one cell. However, I have function calls across multiple cells. For …

python python-2.7 jupyter-notebook ipython pdb
Simpler way to put PDB breakpoints in Python code?

Just a convenience question. I've been a bit spoiled with debuggers in IDEs like Visual Studio and XCode. I find …

python pdb
How to print all variables values when debugging Python with pdb, without specifying each variable?

I'm debugging my Python scripts using pdb and the manual says I can use p variables command to print the …

python debugging pdb
How to exit pdb and allow program to continue?

I'm using the pdb module to debug a program. I'd like to understand how I can exit pdb and allow …

python pdb
Visual Studio 2010 "Cannot find or open the PDB file"

I try to debug a program in Visual Studio 10, but I have a problem with breakpoints. I put *.pdb files …

visual-studio-2010 debugging dll pdb
Attaching a process with pdb

I have a python script that I suspect that there is a deadlock. I was trying to debug with pdb …

python debugging pdb
Getting started with the Python debugger, pdb

I want to add pdb—the Python debugger—to my toolbox. What's the best way to get started?

python pdb
How to execute multi-line statements within Python's own debugger (PDB)

So I am running a Python script within which I am calling Python's debugger, PDB by writing: import ipdb; ipdb.…

python debugging multiline pdb
Can I debug with python debugger when using py.test somehow?

I am using py.test for unit testing my python program. I wish to debug my test code with the …

python unit-testing pdb