This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients ebfe, ned.deily, roger.serwy, serhiy.storchaka, terry.reedy
Date 2012-11-25.08:38:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353832692.56.0.986357982863.issue16547@psf.upfronthosting.co.za>
In-reply-to
Content
From the backtrace it shows you are linking with the Apple-supplied Tk (/System/Library/Frameworks/Tk.framework/Versions/8.5/Tk) framework. The Apple-supplied Tk 8.5 in OS X 10.6 was the first release of the Cocoa Aqua Tk. It has proven to be unusable with Python Tkinter and IDLE.  There have been numerous Python issues opened about it.  If you wish to use Tkinter on OS X 10.6, you should either supply and link with a different Tk 8.5, such as the ActiveState Tcl 8.5 or one you build yourself (either Cocoa, Carbon, or X11) or, if you don't need 64-bit support, link with the Apple-supplied Carbon Tk 8.4.  See http://www.python.org/download/mac/tcltk/ for current recommendations.

That said, it wouldn't explain crashes on Windows (can you produce a trace  for that?) and there's no guarantee you won't run into other bugs using a more recent Tk on OS X.  But you'll most likely be wasting your time if you try to debug anything with the Apple Tk 8.5 in 10.6.  Any Tk problems you find should be reported on one of the Tcl/Tk mailing lists, for example, the Mac-specific Tcl list (most easily accessed here: http://dir.gmane.org/gmane.comp.lang.tcl.mac) or the Tk bug tracker (http://tcl.sourceforge.net).

Unless there is evidence that Python is doing something wrong and you can provide a reproducible test case, this issue should be closed.
History
Date User Action Args
2012-11-25 08:38:12ned.deilysetrecipients: + ned.deily, terry.reedy, roger.serwy, ebfe, serhiy.storchaka
2012-11-25 08:38:12ned.deilysetmessageid: <1353832692.56.0.986357982863.issue16547@psf.upfronthosting.co.za>
2012-11-25 08:38:12ned.deilylinkissue16547 messages
2012-11-25 08:38:11ned.deilycreate