How do you break into the debugger from Python source code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T16:41:05Zhttp://stackoverflow.com/feeds/question/150375http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150375/how-do-you-break-into-the-debugger-from-python-source-code2How do you break into the debugger from Python source code?Daryl Spitzer2008-09-29T19:55:12Z2008-09-29T19:55:20Z
<p>What do you insert into Python source code to have it break into pdb (when execution gets to that spot)? </p>
http://stackoverflow.com/questions/150375/how-do-you-break-into-the-debugger-from-python-source-code/150376#1503765Answer by Daryl Spitzer for How do you break into the debugger from Python source code?Daryl Spitzer2008-09-29T19:55:20Z2008-09-29T19:55:20Z<pre><code>import pdb; pdb.set_trace()
</code></pre>
<p>See <a href="http://jjinux.blogspot.com/2007/08/python-coding-in-debugger-for-beginners.html" rel="nofollow">Python: Coding in the Debugger for Beginners</a> for this and more helpful hints.</p>