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).
3
votes
2answers
171 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 ...
2
votes
1answer
22 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
42 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
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 ...
1
vote
1answer
46 views
How can i include the debug info in my binary?
I have a C++ application, using VS2008, and i want to include the debug information into the binary so that i don't need to publish the ".pdb" file with my application. My application has made use of ...
1
vote
1answer
45 views
OpenCover cannot find PDB when using symbolic links?
In our output tree, the Test directory only contains symbolic links (Win7 x64) pointing to DLLs in various build directories. Next to each of these DLLs in the actual build directory is a ...
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 ...
1
vote
1answer
444 views
missing pdb file
I'm debugging my app on a wince7 device.
After couple minutes I'm getting an error: "No symbols are loaded for any call stack frame. The source code cannot be displayed."
I noticed on the modules ...
1
vote
1answer
190 views
No readline support while using pdb.set_trace()
I have an application running Python 2.6.X. Starting the Python interpreter in interactive mode (with or without using virtualenv): readline support working (command history).
Starting my application ...
0
votes
1answer
16 views
Temporarily entering the debugger in IPython
In IPython, with %pdb enabled, I can hit Ctrl-C and be dropped to a Python debugger console at the exact point I stopped the program.
However, at this point the program is entirely stopped, and I ...
0
votes
1answer
26 views
How do I copy my private PDBs into my symbol cache, using the symbol tree folder structure?
I have a set of PDBs and I want to store them in my cache so that they'll be available to various tools (windbg.exe, wpa.exe) and so that I know they'll be backed up somewhere, rather than risk ...
0
votes
1answer
19 views
Rational tools Purify/Quantify finding pdb files
Do the rational tools follow the _NT_SYMBOL_PATH to find .pdb files? It seems from my experience that they are not and that the .pdb files need to be collocated with the .dll's and .exe's I am trying ...
0
votes
1answer
84 views
pdb crashes web2py and left with a Abort Trap: 6 in the Terminal
It is pretty straight forward I run the python web2py.py in terminal (mac ox lion) and go to my controller. Before I had code which I thought was doing it, but now I only have a this left in my code ...
0
votes
1answer
50 views
Extracting binary name from PDB file
I am working on a project where I need to extract binary name information from a pdb(program database information) file. Earlier I thought that I will be able to do it as:
hr = ...
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 ...
0
votes
1answer
582 views
Visual Studio 2003 Cant use pdb file in both debug mode and release mode
I have a Visual Studio 2003 installed on a Windows7-64Bit. When I build a project in vs2003 it creates a pdb file. For example: for a project named SampleProject, it creates a SampleProject.pdb and ...
0
votes
1answer
422 views
Accessing a PDB file on Android Database
I'm an android developer trying to explore some databases. Normally the sqlite database is about the only database that I see around in Android .
Recently I've stumbled across an app that is running ...
4
votes
0answers
25 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
0answers
129 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
0answers
76 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
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
0answers
82 views
manipulating columns in the pdb files in matlab
I have written the following code, and I am required to do the operations with 6,7,8th column only as shown but I want the result .pdb file containing the other columns from the input files also. that ...
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
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 ...
1
vote
0answers
172 views
Researching RPC calls of mspdbsrv
mspdbsrv.exe is a utility used internally by Microsoft to update PDB files.
The compiler sends symbols updates to mspdbsrv through RPC, and mspdbsrv in turn updates the PDB file.
I'm trying to ...
1
vote
0answers
204 views
VB Projects always building in Debug Mode
I ran into an issue today where VB is behaving differently from C#. The issue is as follows.
Also note this is for .Net 4.0.
Both projects are set to build in release mode
Both projects are in ...
1
vote
0answers
330 views
how to analyze jvm crash dump with .pdb file and .dll
I encountered java crash dump from running java process that using jni native library.
I have a dll and a pdb file of native library emitting crash dump.
but i don't get exact section where cause ...
1
vote
0answers
176 views
Converting .pdb to mysql
I'm currently having some .pdb files which i believe it to be palm os database files which I am looking to convert them to mysql format for usage and manipulation .
Can such a conversion be done ?
0
votes
0answers
13 views
Advanced PDB Graphics Error using VS
So here is the output I have been trying to get past. I recently installed VS12 on a new PC. First I was unable to load any PDB files but this was resolved by loading in from the Microsoft Symbol ...
0
votes
0answers
7 views
How to stop generating pdb file when building library using nmake
I wrote a library MyLib with CMakeLists. I used cmake to generate nmake files in Windows and use nmake to build it. The source files are hello.h and hello.c, and the destination file is hello.lib. The ...
0
votes
0answers
23 views
ipdb, multiple threads and autoreloading programs
I am using ipdb debugger to debug multithreaded web applications locally (Django, Plone). Often ipdb seems to get confused because of the autoreload which happens when I am on the debug prompt. The ...
0
votes
0answers
5 views
Problems to be aware of with PDB structure files
I'm about to start work involving PDB (protein databank structural files). However, I understand that there are many issues which makes them a headache when writing parsers. Does anyone know of a ...
0
votes
0answers
20 views
Debugging / PDB and DIA: Symbols with internal linkage
I recently started working on a project that uses the DIA (Debug Interface Access) SDK from Microsoft to evaluate and extract data from PDBs of debug builds of an .exe/.dll to do certain things with.
...
0
votes
0answers
35 views
pdb.set_trace() not working
When I insert import pdb; pdb.set_trace() in my code, it shows an error message:
'module' object has attribute 'set_trace'
In the pdb.py file, there is the def set_trace() function. How can it ...
0
votes
0answers
36 views
Looking for program to match dump file with binary and pdb
I've got the following situation: I got the (mini)dump file of a crashed application. I haven't got the exe and pdb file, for which the dump file was created, but i have the exact source for the ...
0
votes
0answers
31 views
Coordinate of PDB file sorting in Mathematica
I am a new user of Mathematica 9. I want to rearrange the coordinate of one pdb file according to another. How do i do it?
Suppose, I have a pdb file with
HETATM 1 C1 UNK 0 14.406 ...
0
votes
0answers
56 views
PDB files not loading
Our application has some add-ons in the form of DLLs in nested directories. We are running tests with an instance of DbgView running in the background via which we get our logs. The problem is we run ...
0
votes
0answers
42 views
Visual Studio Debug Step into Code in Wrong Branch
I have project solutions in two branches(trunk and branch actually). When I debug one branch, at one point, I step into a method, it jumps to the file in another branch.
I tried cleaning up the ...
0
votes
0answers
30 views
Activating set_trace() selectively at runtime in pdb or sisters
In pdb/ipdb/pudb, is there a trick whereby I can selectively activate set_trace() statements during runtime?
I'm debugging somewhat complex code with probabilistic behavior, and I would like to ...
0
votes
0answers
15 views
.NET 4.0 symbols, post VS2010 SP1 update
Does anyone know definatively if MS updated source symbols following VS2010 SP1? I am unable to load symbols for System.DLL as local version is .225 (GDR) whereas downloaded symbols are tied to .1 ...
0
votes
0answers
54 views
How to read PDB file and find source code of .net class members, such as fields and properties
I have managed .DLL and .PDB files and corresponding source code.
I can load types with reflection and get FieldInfo for some field.
How to get source file name and line number for this field?
There ...
0
votes
0answers
141 views
Why is visual studio downloading pdb files into my source location?
When I open a C# project in visual studio 2012 update 1, visual studio immediately fills my source directory with pdb directories. I assume these have to do with downloading the symbols for the ...
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
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 ...
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
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
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
0answers
86 views
Get line numbers in exception when module name is renamed
In our release builds to customers we've decided to include pdb files so that once there are exceptions in our log files, we can see line numbers.
We have many clients and basically they all get same ...
-1
votes
0answers
22 views
Where can I find a specific pdb file?
I am using dbghelp.dll and symsrv.dll to debug a remote DX11 application.
Unfortunately, my project complains that it cannot find dxgi.pdb (as well as a few other debug files), so my code always ...
