Pdb is the Python debugger. This tag is also used for the PDB (Program DataBase) file format developed by Microsoft for storing debugging information about a program (executables and DLLs).

learn more… | top users | synonyms

30
votes
11answers
8k views

Do you have to deploy the .pdb file with compiling under release?

Do you have to deploy the .pdb file with compiling under release? Why does it even compile a .pdb when you do a release build anyway?
5
votes
3answers
7k views

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 corresponding to the *.dll files to the same directory. But while checking modules, I see that ...
1
vote
2answers
65 views

How to debug sublime plugins during development [closed]

I want to debug my plugin with pdb but it doesn't work. I get these errors Traceback (most recent call last): File "./sublime_plugin.py", line 362, in run_ File "./useIt.py", line 14, in run ...
4
votes
2answers
449 views

Watch for a variable change in python

There is large python project where one attribute of one class just have wrong value in some place. It should be sqlalchemy.orm.attributes.InstrumentedAttribute, but when I run tests it is constant ...
5
votes
1answer
437 views

How do I change a value while debugging python with pdb?

I want to run pdb, step through the code, and at some point change the value pointed at by some name. So I might want to change the value pointed at by the name 'stationLat'. But it seems I can't. ...
1
vote
2answers
1k views

Remove PDB references from released file

I use to take always a look at the final binary executable or dll after debugging and creating a file with any IDE. Now I am trying Visual C++ 2010, in the search for the best release, without trash ...
1
vote
1answer
954 views

ipython debugger: full traceback on interactive pdb?

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 ...