Re: [Matplotlib-users] matplotlab freezes with a graph and toolbar

2010-06-18 Thread Friedrich Romstedt
2010/6/15 Eliot Glairon ejg_...@yahoo.com: class simpleapp_tk(Tkinter.Tk):#initialize    def __init__(self,parent):        Tkinter.Tk.__init__(self,parent)        self.grid() It sounds a bit odd to me to attemt to .grid() a Tk instance ... The Tkinter.Tk() instance is the toplevel application

Re: [Matplotlib-users] matplotlab freezes with a graph and toolbar

2010-06-16 Thread Malte Dik
Hi, is it helpful to write that both of you examples doesn't crash anything for me (except the second only being able to be $killed)? m...@eee:~$ uname -a Linux eee 2.6.29-2-686 #1 SMP Sun May 17 17:56:29 UTC 2009 i686 GNU/Linux m...@eee:~$ python --version Python 2.5.5 Regards, Malte

[Matplotlib-users] matplotlab freezes with a graph and toolbar

2010-06-15 Thread Eliot Glairon
Hello. Through accident, I found that running the following script will freeze the computer. On my computer, the mouse still worked, but everything else still froze. I have minimalized the code and attached the script for your convienence: import matplotlib matplotlib.use('TkAgg') import

Re: [Matplotlib-users] matplotlab freezes with a graph and toolbar

2010-06-15 Thread Eric Firing
On 06/15/2010 08:02 AM, Eliot Glairon wrote: Hello. Through accident, I found that running the following script will freeze the computer. On my computer, the mouse still worked, but everything else still froze. I have minimalized the code and attached the script for your convienence: