Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:IDLE': 0.04; 'fixes': 0.05; 'preference': 0.05; 'rename': 0.07; 'tkinter': 0.07; 'python': 0.09; 'abort': 0.09; 'ide': 0.09; 'interpreter,': 0.09; 'non-default': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'tcl/tk': 0.09; 'bug': 0.10; 'url:org)': 0.15; '2.7.3': 0.16; 'idle.': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'sec': 0.16; 'subject:Tkinter': 0.16; 'tk()': 0.16; 'settings': 0.16; 'wrote:': 0.17; 'config': 0.17; 'directory.': 0.17; 'instance,': 0.17; 'module': 0.19; 'causing': 0.20; 'followed': 0.20; 'tracker': 0.20; 'import': 0.21; 'error.': 0.21; 'work.': 0.23; 'installed': 0.23; "i've": 0.23; 'url:bugs': 0.24; 'header:User-Agent:1': 0.26; 'components': 0.27; 'header:X-Complaints-To:1': 0.28; 'post': 0.28; 'crash': 0.29; 'searches': 0.29; 'this.': 0.29; "i'm": 0.29; 'attach': 0.30; 'problem.': 0.32; 'url:python': 0.32; 'mac': 0.32; 'running': 0.32; 'could': 0.32; 'idle': 0.33; 'problem': 0.33; 'to:addr:python-list': 0.33; 'likely': 0.33; 'recommended': 0.33; 'version': 0.34; "can't": 0.34; 'along': 0.35; 'especially': 0.35; 'open': 0.35; 'there': 0.35; 'received:org': 0.36; 'but': 0.36; 'anything': 0.36; "i'll": 0.36; 'should': 0.36; 'charset:us- ascii': 0.36; 'subject:: ': 0.38; 'files': 0.38; 'some': 0.38; 'to:addr:python.org': 0.39; 'google': 0.39; 'header:Received:5': 0.40; 'most': 0.61; 'subject:, ': 0.61; 'future.': 0.62; 'provide': 0.62; 'more': 0.63; 'below.': 0.68; 'received:204': 0.72; 'click': 0.76; 'article': 0.78; 'ash': 0.84; 'directory:': 0.84; 'received:204.14': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Ned Deily Subject: Re: Tkinter, IDLE keeps crashing Date: Sun, 17 Feb 2013 14:02:25 -0800 References: <9d367487-4846-4caa-85e7-08ac570b4a6c@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 204.14.154.191 User-Agent: MT-NewsWatcher/3.5.3b3 (Intel Mac OS X) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 36 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1361138558 news.xs4all.nl 6894 [2001:888:2000:d::a6]:60541 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:39041 In article <9d367487-4846-4caa-85e7-08ac570b4a6c@googlegroups.com>, Ash Courchene wrote: > So I've actually had this problem for awhile, and I cant seem to get anything > to work. I've followed all the steps & procedures that my google searches > have provide me, but I can't seem to get the Tkinter module or the Python > IDLE IDE to work. > > For instance, if I click IDLE on my mac, it'll open up for a quick sec & > produce an error. > Or if I go into the Python interpreter, I import Tkinter, call Tk() > Then it says: CGColor 1 components Abort Trap: 6, then get an error. I'll > post this crash report below. > > My system is a Mac OS X 10.7 Lion. > I'm running 2.7.3 Python > I've installed the recommended version of ActiveState TCL/TK Most likely you have a non-default preference set (color or font) that is causing the problem. IDLE and especially Tk on OS X has been known to be vulnerable to this. To try working around it, open a terminal session and rename the IDLE settings directory: cd $HOME mv .idlerc idlerc-disabled Then try relaunching IDLE. If that solves it, it would be nice if you could open an issue on the Python bug tracker (http://bugs.python.org) and attach to it the contents of the config files in the old idlerc-disabled directory. There has been some fixes to IDLE since 2.7.3 to make it more resilient; those will be in 2.7.4 which should be coming along in the near future. -- Ned Deily, nad@acm.org