The Python Debugger (pdb) is an interactive source code debugger for Python programs supporting: Setting breakpoints Single-stepping at the source line level Stack frame inspection Source code listing Evaluation of arbitrary Python code within the stack frame Post-mortem debugging Invocation under ...
13
votes
6answers
2k views
Is it possible to go into ipython from code?
For my debugging needs,pdb is pretty good. However, it would be MUCH cooler ( and helpful ) if I could go into ipython. Is this thing possible?
9
votes
2answers
190 views
How do you watch a variable in pdb
I'm debugging a python script, and I want to watch a variable for a change (much like you can watch a memory adress in gdb). Is there a way to do this?
8
votes
2answers
355 views
Getting started with the Python Debugger pdb
I want to add pdb—the Python Debugger—to my toolbox. What's the best way to get started?
8
votes
3answers
290 views
Making filenames/line numbers linkable in Emacs gud buffer
I'm running pdb on my testcases in Python through the gud buffer. When I get a stacktrace/failure in my testcase, it looks like this:
FAIL: test_foo_function (__main__.TestFoo)
...
8
votes
3answers
307 views
In pdb how do you reset the list (l) command line count?
From PDB
(Pdb) help l
l(ist) [first [,last]]
List source code for the current file.
Without arguments, list 11 lines around the current line
or continue the previous listing.
With one ...
8
votes
1answer
671 views
How do you break into the debugger from Python source code?
What do you insert into Python source code to have it break into pdb (when execution gets to that spot)?
7
votes
1answer
134 views
how do i hook commands sent to pdb through gud?
i've started using pdb through gud in emacs 23.3, how can i hook command messages sent to the debugger from the buffer? i wrote the advice below for use with gdb, in order to persist comint's ring, ...
6
votes
1answer
141 views
How do you skip over a list comprehension in Python's debugger (pdb)?
In pdb the next instruction does not step over list comprehensions, instead it steps through each iteration. Is there a way to step over them so debugging will continue at the next line after the list ...
6
votes
2answers
338 views
Python Unit Testing: Automatically Running the Debugger when a test fails
Is there a way to automatically start the debugger at the point at which a unittest fails?
Right now I am just using pdb.set_trace() manually, but this is very tedius as I need to add it each time ...
6
votes
1answer
773 views
Debugging python programs in emacs
How to debug python programs in emacs?
I use python-mode.el
I get reference like
import pdb; pdb.set_trace();
but not sure how to use it.
5
votes
3answers
129 views
Does importing a module (but not using it) decrease performance in Python?
I'm running a website using Django, and I import ipdb at the beginning of almost all of my scripts to make debugging easier. However, most of the time I never use the functions from the module (only ...
5
votes
5answers
317 views
How to execute multi-line statements within Python's own debugger (PDB)
So I am running a Python script within which I am calling Python's debugger, PDB by writing:
import ipdb; ipdb.set_trace()
(iPython's version of PDB, though for the matter I don't think it makes a ...
5
votes
1answer
648 views
Getting pdb in Emacs to use Python process from current virtualenv
I am debugging some python code in emacs using pdb and getting some import issues. The dependencies are installed in one of my bespoked virtualenv environments.
Pdb is stubbornly using ...
5
votes
6answers
200 views
What is best way for interactive debug in python?
I want to utilize introspection capability of python for debugging/development, but cannot find appropriate tool for this.
I need to enter into shell (IPython for example) at specific position or at ...
5
votes
5answers
2k views
A Python IDE with Debugging and iPython Integration?
Does anyone know of a python IDE that has iPython as the interpreter?
Using the standard interpreter just drives me nuts, as I've just grown to love using iPython and all the features it provides. ...
5
votes
3answers
189 views
Is there anyway to get pdb and Mac Terminal to play nicely?
When debugging my django apps I use pdb for interactive debugging with pdb.set_trace().
However, when I amend a file the local django webserver restarts and then I cant see what I type in the ...
5
votes
5answers
926 views
Python debugger: Stepping into a function that you have called interactively
Python is quite cool, but unfortunately, its debugger is not as good as perl -d.
One thing that I do very commonly when experimenting with code is to call and step into a function interactively, ...
5
votes
5answers
1k views
Is there a free python debugger that has watchpoints?
pdb and winpdb both seem to be missing this essential (to me) feature. I saw something suggesting WingIDE has it but I'd prefer a solution that is free, and if I do have to pay, I'd prefer to pay for ...
4
votes
1answer
250 views
IronPython and pdb.set_trace()
Does anyone know if IronPython 2.6 is planned to have support for pdb.set_trace() to enable setting breakpoints in an ironpython module? If not does anyone have a suggestion for accomplishing this ...
4
votes
2answers
342 views
Can I make pdb start debugging right away?
I want to debug a python project
The problem is, I don't know where to set a break point,
what I want to do, is be able to call a method
SomeClass( some_ctor_arguments ).some_method()`
and have ...
3
votes
1answer
165 views
How do I force Matplotlib to draw while in the ipdb debugger in Spyder (or any other debugger)?
EDIT
Unfortunately, at the moment this is not possible. I found out that it is a bug in Spyder. The developers are still figuring out how to approach this.
Goal
Visualize data while debugging ...
3
votes
2answers
353 views
setting breakpoints with nosetests --pdb option
Nosetests --pdb let's me halt upon error or failure, but this is too late for my needs. Stepping through code during execution helps me debug where the problem is.
However, nosetests are helpful as ...
3
votes
1answer
356 views
How to inject pdb to failing Python scripts?
I'm working on a django project that has a large fixture which does not load:
$ python manage.py loaddata apps/mainsite/fixtures/test_auctions.json
...
3
votes
2answers
252 views
How to programmatically exit pdb started in eval() or exec() without showing output
In my python code I have this line:
try:
result = eval(command, self.globals, self.locals)
except SyntaxError:
exec(command, self.globals, self.locals)
The command variable can be any ...
3
votes
2answers
124 views
best way to deal with python pdb flakiness re/stdout?
I love python and hate the pdb debugger.
For instance, if I have a program where stdout is redirected, my pdb prompts all go to the redirection, because the library was written to write to stdout.
...
3
votes
3answers
826 views
How do I set sys.excepthook to invoke pdb globally in python?
From Python docs:
sys.excepthook(type, value, traceback)¶
This function prints out a given traceback and exception to sys.stderr.
When an exception is raised and uncaught, the interpreter ...
3
votes
2answers
355 views
How to show the output of 'l' in python pdb after every command entered
I would like to have the output of the python pdb 'l' command printed to the screen after every command I enter in an interactive debugging session.
Is there a way to setup python pdb to do this?
2
votes
2answers
33 views
pdb.set_trace() causing frozen nosetests, does not drop into debugger
I'm running a suite of tests (.py files) using nosetests. Using a classic
import pdb; pdb.set_trace()
the nosetests run just never completes. It just hangs right where the breakpoint has been ...
2
votes
3answers
50 views
Getting an error that doesn't seem to make much sense.
I keep getting an error that's referencing one of my Dictionaries in the code. But I can't seem to find anything that would be causing the problem. Something is probably slipping past my eyes, but ...
2
votes
3answers
61 views
How to ensure there are no pdb calls out of debugging configuration?
What do you suggest to get rid of pdb calls on production software?
In my case, I'm developing a django website.
I don't know if I should:
Monkey patch pdb from settings.py (dependding on DEBUG ...
2
votes
4answers
148 views
On keystroke insert line of code in (mac)vim, for pdb
I'm looking for the way to insert a line of code with a keystroke like leaderp in Macvim
I want to insert the following line of code:
import pdb; pdb.set_trace()
Probably not an unheard of line of ...
2
votes
2answers
164 views
Python - Debug running application
I'm trying to fix bugs from gedit plugins. Gedit uses C but some of its plugins are in Python. My computer is old and I cannot run an IDE. I've read about PDB (Python Debugger), but i cannot call the ...
2
votes
1answer
242 views
pdb.set_trace alternative with apache/wsgi
I have just migrated my development enviroment from manage.py to apache/wsgi, how ever when I run pdb.set_trace() I get BdbQuit. Is there a way to work with something like pdb.set_trace under ...
2
votes
2answers
444 views
Trouble with Emacs pdb and breakpoints in multi-threaded Python code
I am running Emacs 23.2 with python.el and debugging some Python code with pdb.
My code spawns a sibling thread using the threading module and I set a breakpoint at the start of the run() method, ...
2
votes
1answer
93 views
Django UnicodeDecodeError when using pdb
I've notice every time I put an:
import pdb; pdb.set_trace()
in My Spanish Django project, if I have a specific Unicode character in a string like:
Gracias por tu colaboración
I get a ...
2
votes
3answers
407 views
Can I debug with python debugger when using py.test somehow?
I am using py.test for unit testing my python program. I wish to debug my test code with the python debugger the normal way (by which i mean pdb.set_trace() in the code) but I can't make it work.
...
2
votes
1answer
223 views
Python (pdb) - Queueing up commands to execute
I am implementing a "breakpoint" system for use in my Python development that will allow me to call a function that, in essence, calls pdb.set_trace();
Some of the functionality that I would like to ...
2
votes
2answers
249 views
Using a debugger and curses at the same time?
I'm calling python -m pdb myapp.py, when an exception fires, and I'd normally be thrown back to the pdb interpreter to investigate the problem. However this exception is being thrown after I've called ...
2
votes
2answers
584 views
cannot override sys.excepthook
I try to customize behavior of sys.excepthook as described by the recipe.
in ipython:
:import pdb, sys, traceback
:def info(type, value, tb):
: traceback.print_exception(type, value, tb)
: ...
2
votes
1answer
217 views
How do you pass script arguments to pdb (Python)?
I've got python script (ala #! /usr/bin/python) and I want to debug it with pdb. How can I pass arguments to the script?
1
vote
1answer
72 views
python pdb: resume code execution after exception caught?
If I run a code with the ipython %pdb magic enabled and the code throws an exception, is there any way to tell the code to continue executing afterwards?
e.g., say the exception is a ValueError: ...
1
vote
0answers
28 views
Python+PDB: how to stop at breakpoint in function called from within PDB?
I have a Python program with a function foo() in it.
I run the program with PDB, and stop at an arbitrary breakpoint somewhere within the program.
Now, it's easy for me to call foo() from within ...
1
vote
1answer
40 views
ipython 0.11 exception visible only after exit of pdb
both in ipython 0.10 and 0.11 I set the automatic launch of pdb on exceptions.
In ipython 0.10 it works fine:
In [1]: 1/0.
---------------------------------------------------------------------------
...
1
vote
3answers
201 views
Simpler way to put PDB breakpoints in Python code?
Just a convenience question. I've been a bit spoiled with debuggers in IDEs like Visual Studio and XCode. I find it a bit clumsy to have to type import pdb; pdb.set_trace() to set a breakpoint (I'd ...
1
vote
1answer
80 views
How do you debug pythonic GUI programs?
I want to debug a pythonic program, such as calibre. Normally, I was using pdb to debug from the console, but when I use pdb with pythonic GUI programs, the GUI part (canvas or what the heck it is) ...
1
vote
2answers
75 views
print values in pdb
this is by first time to use pdb debugger in python. Please pardon me if this is a dumb question.
When I trace to a function, inside the function I would like to print the values of those variable ...
1
vote
1answer
92 views
How do I list the current line in python PDB?
In the perl debugger, if you repeatedly list segments of code taking you away from the current line, you can return to the current line by entering the command . (dot).
I have not been able to ...
1
vote
1answer
129 views
Monitor the state of an object in pdb
Hi I am using python 2.4 and trying to debug a twisted application.
Is there any way by which I can perhaps put a watch on an object and break execution when its value changes.
For Example
To ...
1
vote
2answers
69 views
Step into subroutine call, but not calls made for parameters
func(a(), b.c)
When executing the line above in the pdb debugger, using step will actually step into a, and then into the getter for b.c if its atypical (such as being a property), before actually ...
1
vote
1answer
227 views
Run pdb without stdin/stdout using FIFO
I am developing FUSE filesystem with python. The problem is that after mounting a filesystem I have no access to stdin/stdout/stderr from my fuse script. I don't see anything, even tracebacks. I am ...