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 the debugger be fired right away

How do I do that?

I tried pdb.run( string_command ) but it doesn't seem to work right

>>> import pdb
>>> import <some-package>
>>> pdb.run( .... )
> <string>(1)<module>()
(Pdb) s
NameError: "name '<some-package>' is not defined"
link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

Found it ..

pdb.runcall( object.method )
link|improve this answer
Didn't know you could do that, thanks! – itsadok Mar 19 '09 at 9:15
you can also start pdb from the command line to make it run before anything in your script. python -m pdb yourscript.py – Chad May 3 '11 at 21:45
feedback
pdb.set_trace()

will start the debugger at this point.

Place it at the beginning of the method you want to debug.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.