How do you break into the debugger from Python source code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:41:05Z http://stackoverflow.com/feeds/question/150375 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/150375/how-do-you-break-into-the-debugger-from-python-source-code 2 How do you break into the debugger from Python source code? Daryl Spitzer 2008-09-29T19:55:12Z 2008-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#150376 5 Answer by Daryl Spitzer for How do you break into the debugger from Python source code? Daryl Spitzer 2008-09-29T19:55:20Z 2008-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>