Python: How to set breakpoints on mac with IDLE debugger? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T19:41:54Z http://stackoverflow.com/feeds/question/1081536 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081536/python-how-to-set-breakpoints-on-mac-with-idle-debugger 1 Python: How to set breakpoints on mac with IDLE debugger? PythonAndy 2009-07-04T05:00:20Z 2009-07-10T16:21:09Z <p>I have access to both a PC and a mac for a python class. I find I am unable to set breakpoints in the IDLE debugger in the mac (works fine on the PC). </p> <p>I've tried "ctrl-click" and configuring the touchpad to recognize two taps at once as a secondary click. I don't have a mouse for the mac, just the touchpad.</p> <p>MAC OS 10.4.10 tiger </p> <p>Python/IDLE version 2.6.1</p> <p>I have tried STFW unsuccessfully...</p> http://stackoverflow.com/questions/1081536/python-how-to-set-breakpoints-on-mac-with-idle-debugger/1081590#1081590 1 Answer by ecounysis for Python: How to set breakpoints on mac with IDLE debugger? ecounysis 2009-07-04T05:39:01Z 2009-07-04T05:55:21Z <p>Have a look at the <a href="http://docs.python.org/library/pdb.html" rel="nofollow">pdb</a> module. I have just barely learned about it, and played with it a bit. It appears to enable command line debugging by allowing you to set traces within the code. This gives you interactive access to your variables and code while it is running. Not quite the same as running the IDLE debugger with breakpoints, but it may work for you. <br>See <a href="http://docs.python.org/library/pdb.html" rel="nofollow">this</a> or <a href="http://www.ferg.org/papers/debugging%5Fin%5Fpython.html" rel="nofollow">this</a> for more details. <br><br> Something else to look at ... under Options -> Configure IDLE -> Keys, there may be a way to map keystrokes to the action of setting a breakpoint.</p> http://stackoverflow.com/questions/1081536/python-how-to-set-breakpoints-on-mac-with-idle-debugger/1110542#1110542 1 Answer by rledley for Python: How to set breakpoints on mac with IDLE debugger? rledley 2009-07-10T16:21:09Z 2009-07-10T16:21:09Z <p>If you put the following two lines:</p> <pre><code>import pdb pdb.set_trace() </code></pre> <p>Python will import the <strong>P</strong>ython <strong>D</strong>e <strong>B</strong>ugger and you will be in the interactive interpreter at this point in the code. It will evaluate all your Python expressions normally.</p> <p>The most important commands are:</p> <ol> <li>s - step (forward one command)</li> <li>c - continue (done)</li> </ol> <p>For a full list, see this: <a href="http://infohost.nmt.edu/tcc/help/pubs/python22/pdb-commands.html" rel="nofollow">http://infohost.nmt.edu/tcc/help/pubs/python22/pdb-commands.html</a></p>