Can I make pdb start debugging right away? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:47:49Z http://stackoverflow.com/feeds/question/661034 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/661034/can-i-make-pdb-start-debugging-right-away 2 Can I make pdb start debugging right away? hasen j 2009-03-19T04:12:05Z 2009-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>&gt;&gt;&gt; import pdb &gt;&gt;&gt; import &lt;some-package&gt; &gt;&gt;&gt; pdb.run( .... ) &gt; &lt;string&gt;(1)&lt;module&gt;() (Pdb) s NameError: "name '&lt;some-package&gt;' is not defined" </code></pre> http://stackoverflow.com/questions/661034/can-i-make-pdb-start-debugging-right-away/661044#661044 3 Answer by hasen j for Can I make pdb start debugging right away? hasen j 2009-03-19T04:15:06Z 2009-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#661322 4 Answer by Oli for Can I make pdb start debugging right away? Oli 2009-03-19T07:27:40Z 2009-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>