Can I make pdb start debugging right away? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T13:47:49Zhttp://stackoverflow.com/feeds/question/661034http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/661034/can-i-make-pdb-start-debugging-right-away2Can I make pdb start debugging right away?hasen j2009-03-19T04:12:05Z2009-03-19T07:27:40Z
<p>I want to debug a python project</p>
<p>The problem is, I don't know where to set a break point,</p>
<p>what I want to do, is be able to call a method </p>
<pre><code>SomeClass( some_ctor_arguments ).some_method()`
</code></pre>
<p>and have the debugger be fired right away</p>
<p>How do I do that?</p>
<p>I tried <code>pdb.run( string_command )</code> but it doesn't seem to work right</p>
<pre><code>>>> import pdb
>>> import <some-package>
>>> pdb.run( .... )
> <string>(1)<module>()
(Pdb) s
NameError: "name '<some-package>' is not defined"
</code></pre>
http://stackoverflow.com/questions/661034/can-i-make-pdb-start-debugging-right-away/661044#6610443Answer by hasen j for Can I make pdb start debugging right away?hasen j2009-03-19T04:15:06Z2009-03-19T04:15:06Z<p>Found it ..</p>
<pre><code>pdb.runcall( object.method )
</code></pre>
http://stackoverflow.com/questions/661034/can-i-make-pdb-start-debugging-right-away/661322#6613224Answer by Oli for Can I make pdb start debugging right away?Oli2009-03-19T07:27:40Z2009-03-19T07:27:40Z<pre><code>pdb.set_trace()
</code></pre>
<p>will start the debugger at this point.</p>
<p>Place it at the beginning of the method you want to debug.</p>