up vote 2 down vote favorite
share [g+] share [fb]

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).

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.

MAC OS 10.4.10 tiger

Python/IDLE version 2.6.1

I have tried STFW unsuccessfully...

link|improve this question
Don't use IDLE. – nosklo Jul 4 '09 at 17:58
feedback

4 Answers

If you put the following two lines:

import pdb
pdb.set_trace()

Python will import the Python De Bugger and you will be in the interactive interpreter at this point in the code. It will evaluate all your Python expressions normally.

The most important commands are:

  1. s - step (forward one command)
  2. c - continue (done)

For a full list, see this: http://infohost.nmt.edu/tcc/help/pubs/python22/pdb-commands.html

link|improve this answer
... or just type "help" at the debugger prompt. command-line debugging is something to get used to, but I find it incredibly helpful (I actually use pydb). – ThomasH Jul 10 '09 at 21:06
feedback

Have a look at the pdb 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.
See this or this for more details.

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.

link|improve this answer
feedback

It's a bug in IDLE, specifically any IDLE on Mac OS X linked with the default Aqua Tk, supplied with Mac OS X or from ActiveState. That includes the Apple-supplied Pythons in OS X 10.4 through 10.6 and the python.org installers. The problem is that Aqua Tk has a different mapping for mouse clicks and, even if that were fixed, IDLE expects users to always have a multi-button mouse. See Issue 10404 for more details and a patch. This should not be an issue if the Python is linked with an X11-based Tk, as is the default with MacPorts.

link|improve this answer
feedback

So, for newbies, a little more detail on Ned Deily's patch. Here is what I did. I'm running python 2.7.1 in idle on osx 10.6.5. I followed Ned's link for Issue 10404, and finally to the patched version of the file EditorWindow.py, which on my installation lives in the directory

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/idlelib

Following more links, we find the patched version of the file is here.

This you can download from the "raw" link to the left on that page. Keep a copy of your old version of EditorWindow.py, then move or copy the new EditorWindow.py from your Download directory to the idlelib directory. Restart idle, and ctrl-click gives drop-down menus for setting breakpoints. This is probably all obvious, but it's the first time I did it so I thought I'd share the mini-steps with other novices. There may be a cleaner way to do it too of course.

link|improve this answer
Note that the patch was subsequently applied and is now included in the most recent Python releases, currently 3.2.2 and 2.7.2. – Ned Deily Dec 3 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown