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
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
1answer
26 views

Extract loaded debug symbols into .pdb

I'm currently reversing a new application and encountered a strange behaviour: Browsing the running application with 'Cheat Engine' reveals the function names retrieved by the loaded symbols. An ...
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, ...
0
votes
0answers
18 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
1answer
21 views

Is there any ipdb print pager?

I am using ipdb to debug a python script. I want to print a very long variable. Is there any ipdb pager like more or less used in shells? Thanks
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 ...
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 ...
1
vote
1answer
46 views

Nice general way to always invoke python debugger upon exception

I'd like to have my debugger run post_mortem() any time an exception is encountered, without having to modify the source that I'm working on. I see lots of examples that involve wrapping code in a ...
0
votes
0answers
18 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. ...
1
vote
2answers
70 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
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 ...
0
votes
1answer
50 views

Getting link.exe, lib.exe, editbin.exe and dumpbin.exe to use the symbol server

I have WinDbg set to download symbols to c:\symbols. The symbols for advapi32 (for example) are in c:\symbols\advapi32.pdb\3F32049F550C42B09CF114A1FB8A97E92\advapi32.pdb. The only way I've gotten ...
0
votes
1answer
22 views

Remove the PDB file/functionality from Lib

I'm stuck in the following situation, I have been asked to rebuild a website, the original site was built and the solution had 5 projects, 4 of these where the different data layers and one of them ...
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 ...
1
vote
1answer
44 views

pdb - What does the output mean?

test.py: def fun(): print 'Function' if __name__ == '__main__': fun() $ python -m pdb test.py: > /home/h/CARDIO/WorkSpace/PDB/test.py(4)<module>() -> def fun(): (Pdb) n > ...
0
votes
1answer
38 views

pdb - No arguments printed using 'args'

Code: import pdb def fun(): i = 100 pdb.set_trace() if __name__ == '__main__': fun() Output: $ python pdb_script.py --Return-- > ...
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 ...
1
vote
2answers
19 views

pdb: recover data from “need more than X values to unpack”?

I got this error: ValueError: need more than 2 values to unpack and was dumped out to a pdb prompt (actually, ipdb>). It happens that the computation was very expensive and I don't want to repeat ...
0
votes
1answer
41 views

C++ data validation not working properly and PDB error?

Evening everyone. I have a program that is meant to have a ticket price and and have parent and child fundraisers to discount the ticket. The program is simple enough, but I'm also supposed to have ...
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 ...
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): ...
0
votes
0answers
34 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
30 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 ...
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 ...
0
votes
0answers
40 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
1answer
36 views

Autocomplete and tab key in PDB

I have been trying to get TAB to do something else than inserting a tab while at the (pdb) prompt. What I have in mind is triggering autocomplete such as in here or here, but the tab key doesn't do ...
1
vote
3answers
51 views

How do I ignore a line when using the pdb?

For some quick Python debugging I'll occasionally throw in a import pdb;pdb.set_trace() line that will drop me into the debugger. Very handy. However, if I want to debug a loop, that may run many, ...
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 ...
4
votes
2answers
88 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 ...
0
votes
1answer
17 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 ...
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', ...
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 ...
1
vote
1answer
58 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 ...
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) ...
0
votes
0answers
13 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
1answer
31 views

Python - Tracking one little script with `pdb`

Is it possible save the evolution of constants of a program, a small one indeed, in one file ? In other word, is there a way to store the informations sent by pdb? Suppose for example that we have ...
0
votes
0answers
42 views

Replacing a particular column in a file using matlab [closed]

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
80 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 ...
0
votes
1answer
81 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 = ...
4
votes
1answer
61 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. ...
0
votes
0answers
53 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
132 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 ...
1
vote
2answers
67 views

ipdb requires Ctrl+D for processing command

I am debugging my Python scripts with ipdb. Somehow I have the problem, that after entering a command, for instance n, s, c, b etc. I have to press Ctrl+D two times in order for ipdb to process the ...
2
votes
2answers
161 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 ...
0
votes
3answers
85 views

How to export a variable from PDB?

Imagine the following scenario: a script is started from the IPython shell and at a break point the python debugger is called. Using the PDB commands one can analyze the code and variables at this ...
1
vote
1answer
44 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 ...
0
votes
1answer
66 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
36 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 ...

1 2 3