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?
14
votes
2answers
5k views

Visual Studio 2010 Browse To Find Source

First question: When is "Browse To Find source" enabled in visual studio 2010? (see below) Second question: I want to have it enabled so that I could browse to already-downloaded source code ...
13
votes
2answers
945 views

what's the difference between C# compilation setting “/debug:pdbonly” and “/debug:full”?

According to msdn http://msdn.microsoft.com/en-us/library/8cw0bt21.aspx , both compilation setting "/debug:pdbonly" and "/debug:full" will make .pdb (Program Database) files be generated. However, ...
6
votes
3answers
258 views

Python pdb (debugger) disp equivalent?

Is there a pdb equivalent to disp in gdb? E.g. when I'm debugging C using gdb I can have variables printed on every 'step' through the code by typing: disp var When I'm debugging python using pdb ...
5
votes
3answers
1k views

Decrease time to attach & load symbols

Generally speaking, what are your recommendations on this? Currently takes close to 10 minutes for me to attach to a locally running IIS process hosting SharePoint 2007.
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. ...
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 ...
5
votes
4answers
128 views

How to step through Python expression evaluation process?

I want to build a visual debugger, which helps programming students to see how expression evaluation takes place (how subexpressions get evaluated and "replaced" by their values, something like ...
4
votes
2answers
451 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 ...
4
votes
1answer
59 views

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 turn on the debugger to find a bug, so I add the line to look at the two numpy arrays. ...
4
votes
1answer
111 views

How can I step to use the python debugger to break at every function call?

I want to closely monitor the chain of function calls which are called from a certain function. import pdb; pdb.set_trace() res = api.InsertVideoEntry(video_entry, video) I'm looking for a way to ...
4
votes
1answer
248 views

Interrupt (pause) running Python program in pdb?

In gdb, you can interrupt(pause) the program by C-c and resume. Can you do this in pdb?
4
votes
2answers
81 views

How to debug Django app running on Heroku using a remote pdb connection?

To debug a bug I'm seeing on Heroku but not on my local machine, I'm trying to do step-through debugging. The typical import pdb; pdb.set_trace() approach doesn't work with Heroku since you don't ...
4
votes
0answers
24 views

Loading Specific Symbols from a Symbol Server in Visual Studio that match a regex

We have a symbol server hosts our pdbs for our internal libraries. All dll's that are published begin with prefix "ABC" I would like to configure Visual Studio to Load only specified modules that ...
3
votes
2answers
135 views

Is there a way to step into decorated functions, skipping decorator code

I have a module which decorates some key functions with custom decorators. Debugging these functions with pdb often is a bit of a pain, because every time I step into a decorated function I first ...
3
votes
2answers
128 views

How do I make large datasets load quickly in Python?

I do data mining research and often have Python scripts that load large datasets from SQLite databases, CSV files, pickle files, etc. In the development process, my scripts often need to be changed ...
3
votes
1answer
443 views

Emacs python-mode: Keyboard shortcuts for pdb step-by-step debugging

I was wondering if there is a way to associate: n RET (next) p RET (previous) c RET (continue) C-x SPC RET (set/clear breakpoint) with function keys F1-F12 or other keyboard shortcuts. The idea is ...
3
votes
1answer
345 views

Debugging C# production application with/without pdb file

I built an application that is handling an error and returning the following error msg: System.NullReferenceException: Object reference not set to an instance of an object. at ...
3
votes
2answers
149 views

How does 'Source Stamping' work?

In a presentation by Bungie (A Life on a Bungie Farm) a feature in Visual Studio named 'Source Stamping' is mentioned. I would like to read a bit more information on that subject but finding related ...
3
votes
3answers
4k views

Cannot find or open the PDB file message, pdb exists

I am using Visual Studio 2010, recently upgraded. The solution contains 25 projects, makes a dozen dll's and exe's. I am trying to debug a particular problem and I can't due to symbols not being ...
3
votes
1answer
95 views

setting up assemblies for debugging

.Net assemblies have pdb files for debugging. The PDB file points to the exact source location among other details. This is good if I am building the assembly and debugging it locally. The problem ...
3
votes
2answers
169 views

Python debugger (pdb) stopped handlying up/down arrows, shows ^[[A instead

I am using python 2.6 in a virtualenv on an Ubuntu Linux 11.04 (natty) machine. I have this code in my (django) python code: import pdb ; pdb.set_trace() in order to launch the python debugger ...
3
votes
3answers
234 views

Are there negative performance implication to having .pdb files present in bin directory?

Is it a problem if I keep the .pdb files present in the bin directory? Are there any negative performance issues?
3
votes
0answers
128 views

change path of pdb file in headers of dll file

Is there a way to change path of pdb file in headers of dll file from absolute to relative? For example, if I do dumpbin /headers on my library file i get: Time Type Size RVA Pointer -------- ------ ...
2
votes
1answer
565 views

How to get source/line number for IL instruction using Mono.Cecil

I'm using Mono.Cecil to write a simple utility that looks for type/method usage within .NET assemblies (ex. calling ToString on enums). I am able to get find the method, but it would be cool to ...
2
votes
2answers
55 views

Is there a trick to break on the print builtin with pdb?

Basically, the title. I am trying to trace down where a spurious print happens in a large codebase, and I would like to break, or somehow get a stack trace whenever a print "happens." Any ideas?
2
votes
1answer
58 views

Is there any reason Python 3 would execute a statement twice?

I have a function: def turn(self, keyEvent): if (keyEvent.key == pygame.locals.K_UP) and \ (self.body[0].direction != Directions.DOWN): ...
2
votes
1answer
72 views

In Visual Studio is there an easier way to open source code through a PDB then to step into a function call from that library?

I want to be able to browse the source and set a debug point without having to hunt for a way to get the file open. I know you can open the original source and detach/reattach the debugger but that ...
2
votes
2answers
159 views

PDB files with cmake install

I am using a CMAKE command to install PDB files to enable debugging in a developer distribution of my C++ application. The command is as below: INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/Debug ...
2
votes
1answer
123 views

How to set breakpoint in another module (don't set it on function definition line, if you want to break when function starts being executed)

I'm trying to debug a module "main", which calls a function "broken_function" at line 356 of "another_module". I'm having an error in that function and want to put a breakpoint at its start. Below is ...
2
votes
1answer
89 views

PDB.run - restarting a pdb session

I'm relatively new to python and pdb, but I have a lot of experience with gdb. My problem is that if I set a number of breakpoints in my code at some point I will want to change something and re-run ...
2
votes
2answers
121 views

What is the simplest way of using Python pdb to inspect the cause of an unhandled exception?

I just converted all my unit test data from JSON to YAML, and now an exception is raised somewhere in my code. More specifically, this is printed traceback: Traceback (most recent call last): File ...
2
votes
1answer
90 views

Debugging Monomac apps built using Visual Studio

Does Monodevelop allow .net assemblies to be debugged that have been built using Visual Studio (i.e. assemblies that have .pdb symbols rather than .mdb symbols)? If so, how are source files located ...
2
votes
1answer
32 views

How to use pdb to debug module written by C?

I am using pdb to debug a python program, and the python program uses a module written by C. I want to use "step" command to enter the function in the module written by C, but I find this operation ...
2
votes
1answer
24 views

Pdb and Python's core module loading when set_trace() is called: possible?

Recently I find myself using PDB a lot more than usual. I have my beautiful shortcut that quickly adds import pdb; pdb.set_trace() where I need in my code. Now, everytime I'm in pdb, I want the ...
2
votes
1answer
180 views

IPython - set a breakpoint in imported file

One can set a breakpoint in IPython + pdb like this: run -d -b 150 file1.py That would break the execution of file1.py at line 150. Now, how can one set a break point in a file that is being ...
2
votes
1answer
46 views

Trace an arbitrary Python command issued in PDB?

I know I can use PDB to trace through a module, and that I can execute an arbitrary command from pdb by prepending it with a ! (e.g. !"foo".upper()). Is there some way to combine these ...
2
votes
2answers
165 views

python: in pdb is it possible to enable a breakpoint only after n hit counts?

In eclipse (and several other IDE's as well) there is an option to turn on the breakpoint only after a certain number of hits. In Python's pdb there is a hit count for breakpoints and there is the ...
2
votes
1answer
21 views

How to save state between different pdb(pp) sessions?

I use pdbpp to debug programs. I wonder if it is possible to save and restore pdbpp's (or pdb's) state between different sessions. What I mean by this is that I want to preserve all my breakpoints, ...
2
votes
1answer
41 views

Local variables not present at Python's rdb debugging breakpoint (in celery task)

I am trying to debug a celery task but the parameters and local variables aren't present when I telnet in: from celery import Celery from celery.contrib import rdb celery = Celery('tasks', ...
2
votes
0answers
75 views

start python pdb with multiple arguments?

I was wondering if there is a way to start pdb with multiple arguments. Currently I know I can do this: python -m pdb script.py and then manually setup break points, with: (Pdb) break (Pdb) ...
2
votes
1answer
111 views

Does pdb.set_trace() always overwrite an error traceback?

I've got a loop processing sockets, and I've set a pdb.set_trace() breakpoint to stop and inspect the results of the call to select.select() every time through the loop. However, there are also bugs ...
2
votes
1answer
146 views

In pdb (python debugger), can I set a breakpoint on a builtin function?

I want to set a breakpoint on the set.update() function, but when I try, I get an error message. Example: ss= set() ss.update('a') Breakpoint: b set.update b ss.update Errors: The specified ...
2
votes
0answers
85 views

Specify PDB path in Visual Studio 2003

In Visual Studio 2003, if I link with a library that doesn't have its corresponding PDB file, I get a warning: foo.lib(bar.obj) : warning LNK4099: PDB 'other.pdb' was not found; linking object as ...
1
vote
5answers
293 views

What's the PDB file?

What's the PDB files inside the .NET dll files and what it does? Usually peoples remove this file in deploying and only keep the dll file in lib folders but it seems nothing happened and everything ...
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
575 views

Why do I need ILK, PDB and EXP files?

I have downloaded some dll files and with it came also pdb, exp and ilk files. Now I need to know do I need to put them in my system file, or not and what is the purpose of each of them in the ...
1
vote
2answers
67 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 ...
1
vote
1answer
56 views

Python: Using pdb with Flask application

I'm using Flask 0.9 with Python 2.7.1 within a virtualenv, and starting my app with foreman start In other apps I've built when I add the following line to my app: import pdb; pdb.set_trace() then ...
1
vote
1answer
318 views

Stepping into a function in IPython

Is there a way to step into the first line of a function in ipython. I imagine something that would look like: %step foo(1, 2) which runs ipdb and sets a breakpoint at the first line of foo. If I ...

1 2 3