Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #39059
| Path | csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.004 |
| X-Spam-Evidence | '*H*': 0.99; '*S*': 0.00; 'subject:IDLE': 0.04; 'testing,': 0.07; 'python': 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; 'yeah,': 0.09; 'language': 0.14; 'finished': 0.15; 'weird': 0.15; 'crashes': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'selected.': 0.16; 'subject:Tkinter': 0.16; 'sudo': 0.16; 'settings': 0.16; 'wrote:': 0.17; 'intel': 0.17; 'widget': 0.17; 'input': 0.18; 'disable': 0.22; 'either.': 0.22; 'preferences': 0.22; 'tried': 0.25; 'least': 0.25; 'header:User-Agent:1': 0.26; 'older': 0.27; 'core': 0.27; 'easiest': 0.27; 'then.': 0.27; 'header:X-Complaints-To:1': 0.28; 'crash': 0.29; 'factor': 0.29; 'helpful.': 0.29; 'source': 0.29; 'running': 0.32; 'could': 0.32; 'idle': 0.33; 'text,': 0.33; 'to:addr:python-list': 0.33; 'another': 0.33; 'there': 0.35; 'received:org': 0.36; 'but': 0.36; 'should': 0.36; 'charset:us-ascii': 0.36; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'think': 0.40; 'subject:, ': 0.61; 'back': 0.62; 'more': 0.63; 'dont': 0.64; 'potentially': 0.66; 'believe': 0.69; 'color': 0.69; 'pro': 0.69; 'restore': 0.69; 'received:204': 0.72; 'article': 0.78; 'ash': 0.84; 'macbook': 0.84; 'received:204.14': 0.84; 'seriously,': 0.91 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Ned Deily <nad@acm.org> |
| Subject | Re: Tkinter, IDLE keeps crashing |
| Date | Sun, 17 Feb 2013 18:02:03 -0800 |
| References | <9d367487-4846-4caa-85e7-08ac570b4a6c@googlegroups.com> <nad-9C8F8C.14022517022013@news.gmane.org> <mailman.1908.1361139378.2939.python-list@python.org> <b12df7c4-1daa-41af-98aa-14915e100f80@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 <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1918.1361152936.2939.python-list@python.org> (permalink) |
| Lines | 37 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1361152936 news.xs4all.nl 6952 [2001:888:2000:d::a6]:42594 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:39059 |
Show key headers only | View raw
In article <b12df7c4-1daa-41af-98aa-14915e100f80@googlegroups.com>, Ash Courchene <ash.courchene@gmail.com> wrote: > I believe I have a MacBook Pro.2.4 GHz Intel Core i5. > I dont think I have any weird color settings or 3rd party extensions... How > can I tell exactly?? By finding the one that crashes Tk - yeah, I know that's not very helpful. But, more seriously, have you tried running /usr/local/bin/wish8.5? If Tk crashes there when running the widget demos, then at least Python is not a factor. The only vaguely potentially relevant hardware factor I can think of is whether or not the MacBook Pro has a Retina display. The only standard settings that might be revlevant are those in System Preferences -> Language & Text, prinarily what Input Source is selected. Another thing you could try is to temporarily disable the ActiveState Tcl/Tk and see what happens with calling Tk in python and with IDLE then. They will automatically fall back to using the Apple-supplied Tcl/Tk 8.5.x in 10.7 which is older and buggier than A/S 8.5.13 but should not crash immediately, either. The easiest way to do that is to use sudo from the terminal: cd /Library/Frameworks/ sudo mv ./Tcl.framework ./Tcl-DISABLED sudo mv ./Tk.framework ./Tk-DISABLED When finished testing, you can restore them by: cd /Library/Frameworks/ sudo mv ./Tcl-DISABLED ./Tcl.framework sudo mv ./Tk-DISABLED ./Tk.framework -- Ned Deily, nad@acm.org
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Tkinter, IDLE keeps crashing Ash Courchene <ash.courchene@gmail.com> - 2013-02-17 13:46 -0800
Re: Tkinter, IDLE keeps crashing Ned Deily <nad@acm.org> - 2013-02-17 14:02 -0800
Re: Tkinter, IDLE keeps crashing Ned Deily <nad@acm.org> - 2013-02-17 14:16 -0800
Re: Tkinter, IDLE keeps crashing Ash Courchene <ash.courchene@gmail.com> - 2013-02-17 15:38 -0800
Re: Tkinter, IDLE keeps crashing Ned Deily <nad@acm.org> - 2013-02-17 18:02 -0800
Re: Tkinter, IDLE keeps crashing Ash Courchene <ash.courchene@gmail.com> - 2013-02-17 15:38 -0800
csiph-web