The Python Debugger (pdb) is an interactive source code debugger for Python programs.
1
vote
1answer
16 views
List of combinations not directly accessible
When I create a list by calling the list function on an iterator that was itself produced with the itertools.combinations function, sometimes I get an error like the following:
*** Error in argument: ...
0
votes
1answer
100 views
Running wxPython 2.9 on OS X 10.8 (64 bit)
I have EPD 7.3 and have installed wxPython 2.9 through the Enthought repositories. I tried running winPDB, which requires wxPython and I got this message :
This program needs access to the screen.
...
0
votes
1answer
135 views
Get IPython tab completion for ipdb
I have IPython(0.13.1) and ipdb(0.7) installed, I inserted the line import ipdb;ipdb.set_trace() in my script and ran python my_script.py. Now I am in the ipdb prompt and there is some autocompletion ...
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 ...
0
votes
1answer
25 views
How can I step into a function when its call is over multiple lines?
Let's say I have this code sample:
function1(
'arg1',
'arg2',
function2(
'arg3.1',
'arg3.2',
),
)
According to pdb's documentation, I can step into a function by ...
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 ...
5
votes
4answers
130 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 ...
0
votes
1answer
34 views
django tutorial part 2 template opening from default only
My setting for TEMPLATE_DIRS is
PATH_PROJECT = os.path.abspath(os.path.dirname(file))
TEMPLATE_DIRS = (
os.path.join(PATH_PROJECT, 'mytemplates/'),
)
...
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 ...
2
votes
1answer
91 views
Django - use pdb interactive debug for wsgi running app
If I develop a Django app and use the included testing server, I can just add a import pdb; pdb.set_trace() anywhere in the code and have a breaking point that throws me into an interactive debugger. ...
0
votes
1answer
90 views
Python - start interactive debugger when exception would be otherwise thrown
Is there any way to make a python program start an interactive debugger, like what import pdb; pdb.set_trace() instead of actually throwing an exception?
I know the difficulty of making this work, ...
2
votes
0answers
286 views
pdb remote debugging over socket for Sublime Text 2 plug-in development [duplicate]
I'd like to put Python pdb statements in Sublime Text 2 plug-in code. The problem is that this code is run in an embedded Python which does not provide the required console access (stdin, stdout) to ...
2
votes
1answer
208 views
Ipdb and method documentation
Hy there,
i have to analyze methods a foreign API, and how i usually do it it to write a test script, or find an example code, do a
ipdb.set_trace()
where i want to experiment, and than take a ...
0
votes
2answers
60 views
Can't call type() from within PDB under Python 2.7 [closed]
p type("ddd")
*** TypeError: TypeError("'int' object is not callable",)
!print(type("dd"))
*** TypeError: 'int' object is not callable
type
255
!type
255
Does anybody know why this is? It doesn't ...
0
votes
3answers
154 views
ipdb doesn't work in vim console
ipdb works fine in the shell, but I want to debug under vim, after I set ipdb.set_trace(), and then !python %,
the console below gives me this messy prompt, any idea?
2
votes
0answers
169 views
Python crashes on “import pdb”
I am debugging a python script. I have one section that is throwing IndexErrors, and I want to use pdb to find out why. Here is my script:
try:
# do stuff that throws an IndexError
except ...
1
vote
2answers
108 views
how to switch between processes in pdb
I am debugging a Python application, that makes use of os.fork() at some point.
After evaluating the function PDB remains in the parent process (as I can see from the value returned from the ...
5
votes
2answers
163 views
Can I force debugging python on AssertionError?
Suppose I have a python program where assert has been used to define how things should be, and I would like to capture anomalies with the read-eval-loop rather than having AssertionError be thrown.
...
0
votes
1answer
116 views
PDB how to break on exit?
How can I get the python debugger, pdb to break on exit?
Also, why I am at it, How can I break on exceptions raised?
Thanks,
mike
0
votes
1answer
46 views
Where do I put Microsoft.Scripting.Debugging so that our embedded interpreter can find it?
I am trying to debug a function I've written, and it is not possible to run it in the regular IronPython interpreter because of all the jiggery pokery we do when we start up the one we've embedded in ...
1
vote
1answer
141 views
django-pdb when running with nginx/fcgi?
It seems to work somewhat when I just execute:
python manage.py runserver <hostname>:<port> --pdb.
What happens is it will receive the GET request, but it won't actually let me step ...
1
vote
0answers
52 views
Python Debugger out of sync with code
I am in the process of debugging something in OpenERP using Python 2.7.3. The debugger seems to get out of sync with the code when stepping through with the Next (n) command. See Code and output ...
2
votes
1answer
93 views
State of the art post-mortem debugging for Plone
What's the recommended method for invoking pdb / ipdb on certain exceptions in Plone?
The most common use case would to
Turn on pdb on exception behavior temporary
Make sure pdb is only invoked for ...
4
votes
1answer
705 views
Sublime, Python, web servers and setting breakpoints
What's the recommended method to debug Python web servers (I have Plone/Zope) with Sublime Text 2?
Set real breakpoints in the text editor...
... preferably through line context sensitive command ...
0
votes
0answers
117 views
Can't restart in Python debugger
I am writing some Python code on an Amazon EC2 instance over the command line.
I'm trying to debug this thing. However, when I run restart or run in the debugger, I get this long error message. I get ...
3
votes
1answer
103 views
Why isn't bpython3 debugging?
Apparently I've unlearned how to debug with python.
I run bpython3 -i myfile.py, but when an exception occurs I still don't have access to the program variables, nor I can find any command like gdb's ...
1
vote
0answers
120 views
Weird IPython ipdb behaviour
I have some really weird behaviour that I just don't understand and therefore cannot explain, so I hope someone here can help me out. First thing I noticed was ipdb not letting me define variables any ...
2
votes
1answer
62 views
Why can't I step into the debugger with 'dumpdata' management command?
I am trying to determine why I can't use a debugger when I call:
python manage.py dumpdata --indent=2 > forum/fixtures/initial_data.json'
I've put the following statements in the management ...
2
votes
2answers
197 views
How to get a more detailed information on an object (a list of fields and methods) using Python's pdb?
I am using pdb (actually ipdb) to debug my Django models.py. In particular I am trying to debug these lines of code:
def add_can_view( sender, **kwargs ) :
#import ipdb; ipdb.set_trace()
for ...
11
votes
2answers
681 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 ...
3
votes
1answer
464 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: ...
2
votes
0answers
204 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
81 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.
---------------------------------------------------------------------------
...
2
votes
1answer
105 views
assign values to symbols in python debugger (pdb)
Using pdb.set_trace(), I am trying to debug a series of expression in which j is used as an indexing variable. statements such as j = 0 are not allowed since j is a reserved symbol for pdb. How can I ...
0
votes
2answers
872 views
How do I list all the attributes of an object in python pdb?
I try to list all the attributes of an object in Python pdb.
Let's say I want to list all the attributes and all methods of sys.stderr.
How can I do that?
15
votes
2answers
2k 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?
6
votes
3answers
186 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 ...
0
votes
2answers
295 views
PDB won't stop on breakpoint
I'm quite new with debugging directly with pdb and I am having some issues debugging my Django application. Here is what I'm doing:
python -m pdb manage.py runserver
(pdb) b core/views.py:22
...
3
votes
3answers
60 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 ...
6
votes
1answer
605 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
3answers
79 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 ...
6
votes
3answers
4k 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 ...
4
votes
3answers
1k views
python pdb - skip loop
How can I skip over a loop using pdb.set_trace()
for example:
pdb.set_trace()
for i in range(5):
print(i)
print('Done!')
Pdb prompts before the loop. I input a command. all 1-5 values are ...
1
vote
1answer
244 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) ...
4
votes
4answers
345 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 ...
0
votes
2answers
323 views
Python pdb command history not working on Windows
I'm using Windows 7 + Cygwin + Python 2.6 + cmd prompt. Since yesterday, command line history stopped working with pdb. I used the following lines in my python code for interactive debugging.
import ...
16
votes
1answer
526 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 ...
0
votes
1answer
41 views
what is the equivalent of 'x' in perldb but for python's pdb in emacs?
I am just starting to use pdb to debug python in emacs, and I find the 'x' command missing that is available in perldb. Is there something similar in pdb?
8
votes
1answer
237 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, ...
13
votes
4answers
2k 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 ...

