Tagged Questions
0
votes
2answers
44 views
How to tell the Python debugger to finish the program?
I have recently come across a VERY cool Python module called pdb. For those that are not familiar with it, it is super easy to use and gives you access to pretty much anything within scope at the ...
0
votes
1answer
39 views
pdb doesn't respond after pdb.set_trace() call
I have parent process calling its child. I've put import pdb; pdb.set_trace() into the child process code.
When I launch the parent with python -m pdb parent.py it's getting frozen. The debugger ...
0
votes
0answers
23 views
How to debug python CLI that takes stdin?
I'm trying to debug a Python CLI I wrote that can take its arguments from stdin. A simple test case would have the output of
echo "test" | python mytool.py
be equivalent to the output of
python ...
0
votes
0answers
22 views
How to use pdb on a set of scripts?
So, I have a number of python scripts and there are a lot of import statements in there. So, when I use pdb.set_trace(), it shows me the lines that my that my particular script is executing. Now, what ...
7
votes
5answers
195 views
Step-by-step debugging with IPython
From what I have read, there are two ways to debug code in Python:
With a traditional debugger such as pdb or ipdb. This supports commands such as c for continue, n for step-over, s for step-into ...
0
votes
1answer
29 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 ...
2
votes
1answer
24 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
37 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
23 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
2
votes
1answer
37 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
53 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 ...
2
votes
2answers
148 views
How to debug sublime plugins during development
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
vote
1answer
49 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
41 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
22 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 ...
2
votes
1answer
67 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
1answer
44 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
58 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
27 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
113 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 ...
2
votes
1answer
56 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
33 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
69 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
93 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
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
1answer
96 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 ...
4
votes
1answer
76 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.
...
1
vote
2answers
73 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 ...
0
votes
3answers
92 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
0answers
56 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
24 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
137 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 ...
3
votes
1answer
252 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
52 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 ...
2
votes
2answers
218 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 ...
5
votes
4answers
135 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
82 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 ...
3
votes
1answer
156 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
63 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
564 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
138 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
90 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
176 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
2answers
323 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
97 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
141 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
393 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 ...