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

0
votes
1answer
68 views

Visual Studio debugger will only load symbols from intermediate directory

I have a Visual Studio class library DLL that I build with MSBuild, which when used in the Debug configuration, copies the DLL, the PDB, and various resource files, into a web application. The problem ...
0
votes
1answer
37 views

Why should we need the map file when pdb file is available in windows platform?

As described in title, I think the pdb file is a superset of map file. The reason why I ask this question is due to the fact that i'm now taking charge of sustaining a old system which will produce ...
0
votes
0answers
53 views

Python: Debugging an error from Traceback when the program execution continues

I have added some changes to an already existing Python project, but I am getting the following TypeErrors on running it. The program continues to run beyond this error and hence I am not able to ...
0
votes
1answer
63 views

Where to set breakpoint in Django for a request (before being dispatched)?

Where is a good place to set a breakpoint in Django at the point where a page request comes in, but before the Django dispatcher has run? I assume there's a loop in the Django web server (manage.py ...
0
votes
2answers
67 views

Download a Fasta file and write it into a text file

I am using this code to download a fasta sequence file from the pdb website. The pdb id is the string protid. import java.io.*; import java.net.URL; import java.util.Scanner; public class ...
0
votes
1answer
86 views

Windows PDB file contains multiple symbols for same address? [duplicate]

Possible Duplicate: Why two functions print the same address? I am working with PDB symbol files for an application which processes them (via the DbgHelp API). I have come across a strange ...
0
votes
1answer
21 views

How do I tell pdb.run to use my current imports when running from a shell?

I want to start a pdb session from the pyhton shell on a function using pdb.run(). I know that I can give it a globals or a locals parameter, but I don't know what values to pass so that I keep all of ...
3
votes
2answers
129 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 ...
2
votes
1answer
189 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
47 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 ...
0
votes
2answers
90 views

How can I check a pdb for a particular dll exists in a directory using Powershell?

I have a parent Directory inside which there are multiple project folders. How can I check in powershell whether a pdb exists for all the respective dlls inside all the project folders? I tried the ...
2
votes
2answers
175 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 ...
0
votes
0answers
441 views

visual studio Cannot find or open the PDB file [closed]

i am trying to run a project with visual studio 2010. i have allready built the project with success. when i run the project, i get that error message: 'tal.exe': Loaded 'C:\Documents and ...
0
votes
0answers
918 views

mscorlib.pdb not loaded [duplicate]

I'm getting the following exception while programming a C# WPF .NET 4.5 application: C:\Windows\Microsoft.Net\assembly\GAC_64\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.pdb: Cannot find or ...
5
votes
4answers
131 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 ...
1
vote
0answers
60 views

Why does the python debugger in python 2.7 32-bits under windows abbreviate error messages?

Sometimes the debugger abbreviates a run-time error message as shown below (Pdb) n > p:\hhu\updater4.py(136)make_and_execute_insert() -> result = dbops.do( db.cursor, query.encode( 'utf-8' ) ) ...
1
vote
1answer
74 views

Python PDB Exits Immediately (stdin)

I'm currently writing an AI assignment for class, and each time I try to debug (using ipdb or pdb) pdb closes immediately. The program takes a map as input, and right now I'm just piping the text file ...
2
votes
1answer
128 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 ...
0
votes
0answers
56 views

Breaking from Ant-driven nosetests

Is there a way to successfully break into breakpoints set in Python when running nosetests via Ant? If I automate running tests with a makefile, it works as expected. However, when running through ...
1
vote
1answer
50 views

Python PDB only stepping into single file?

I'm trying to debug a fairly complex django project that obviously has a ton of calls to built in functions, other classes, and misc custom methods. What I want to do is put the pdb.set_trace() in ...
4
votes
2answers
473 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 ...
2
votes
1answer
114 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 ...
-1
votes
1answer
85 views

Python PDB set_trace not working [closed]

The program stops properly where expected, but I don't get the pdb prompt. Hitting "c" continues the program as expected. I've checked stdout and it's fine.
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 ...
0
votes
1answer
104 views

Read VC++ PDB source files bounds and lines

So I reverse engenering a program which have a PDB included with functions, source files and global variables symbols. I use IDA PRO which includes the functions and variables names from the PDB but I ...
1
vote
3answers
330 views

Django Gunicorn Debug

Initially I had a Django app with the included testing server. To debug this setup, I can just add a import pdb; pdb.set_trace() anywhere in the code and have a breaking point that throws me into an ...
0
votes
2answers
212 views

How can I include the PDB files into a Package ZIP file using Visual Studio 2012 and MSdeploy

I need to be able to include the PDB files into the ZIP file that gets created when I run the "Publish" command in Visual Studio to create the MSDeploy package. I can see the PDB files in the folder ...
1
vote
1answer
67 views

I have an XML output file from BLAST, how to find matches in the PDB Database?

I have an blast output XML file and I want to find a way to run the contents of the file through the RSCB Protein Data Bank in order to find some kind of homology between my output file and anything ...
1
vote
2answers
281 views

pdb cannot break in another thread?

Consider this multi-threaded program: import threading class SomeThread(threading.Thread): def run(self): a = 1 print a def main(): print 'hola' someThread = SomeThread() ...
2
votes
1answer
90 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
126 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 ...
1
vote
1answer
334 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 ...
0
votes
0answers
151 views

MSBuild copying PDBs of referenced DLLs

I am using MSBuild command line to build my project and with the help of DebugType=None, the project is no longer producing a PDB file when it compiles - which is what I need as these mess up ...
0
votes
1answer
83 views

Manually publish pdb to symbol server

I have a 3rd party library, fortunately I have the pdb's for the 3rd party library. I have a symbol server in my organization, I have a local symbol cache folder on my desktop. This 3rd party ...
0
votes
1answer
367 views

rpdb2: how to connect to a pid

I have a wsgi app which has this in the code: import rpdb2; rpdb2.start_embedded_debugger("asdf") Now using rpdb2 (not winpdb!) I would like to connect to the process and start debugging. I can't ...
1
vote
0answers
178 views

Cofigure ipdb for eclipse PyDev

Basic version of pdb works just fine, but I really like iPython so I want to get myself ipdb too, but I encountered some problems while running in a PyDev project. I put following line in my program ...
1
vote
0answers
149 views

Visual studio 2010: merging libraries and debug symbols

I'm creating with visual studio 2010 about a dozen small libraries which I merged into one single huge library. I can't get around the problem about setting the debug information for the merged ...
2
votes
1answer
92 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 ...
0
votes
1answer
88 views

Python pdb — how to change the default lines listed by “l” command?

I'm experimenting with debugging my python from the raw pdb program rather than running pdb though emacs (which tracks the current line with a marker in the text display of the code). It's slightly ...
0
votes
0answers
76 views

django debugging with emacs, have to rerun pdb after edit

Django debugging with Emacs shows how to run pdb in emacs. It works great but I have to kill pdb process and rerun it after changing source code because it won't recognize the change unless I ...
0
votes
1answer
65 views

Calling pdb.set_trace from script invoked from os.system

I want to debug a python script which is invoked via os.system() from another python script. I tried calling pdb.set_trace from the invoked code but it doesn't work. I can't see the Python pdb prompt. ...
0
votes
3answers
139 views

Tracing the execution of a Python program line/statement by line programmatically

What would be the easiest way to execute a Python script and, for each executed statement, pass the line number or the line itself to a callback function? For example A piece of code to be executed ...
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 ...
0
votes
0answers
100 views

How to debug a Silverlight solution split across multiple projects

for our Silverlight application we have the following structure: One Solution with the Web-Project Many Solutions with the module projects The Web-Project Solution contains in the ClientBin folder ...
0
votes
2answers
378 views

Visual C++, breakpoints do not break

I have a project in Visual C++ 2010 (Win32 application, non-managed code) in which I'm experiencing a really strange behavior. I put a breakpoint and it simply does not break! The clues: A PDB file ...
1
vote
1answer
54 views

NServiceBus pdb/source stepping procedure?

I have an application with many projects that reference several NServiceBus NuGet packages. I have occasionally wanted to be able to step into the NSB sources to debug problems, but I don't know of a ...
1
vote
5answers
304 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
2answers
252 views

How to redirect standard input when debug python?

When i debugged c code, i always use 'gdb a.out < test' to redirect standard input stream. But when it comes to pdb, i found it doesn't work. After searching in pdb help doc, i still can't find ...
0
votes
1answer
239 views

Python thread debugging

I am debugging a python program with pdb. The program will start a new thread. newThread = Thread(group = None,target = dosomething,name = "thename", args = (),kwargs ...