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 window.  You do not
have to grid it.

Also, I don't know what the *parent* argument means to to
Tkinter.Tk.__init__().  Try to leave the parent argument alone, and
try to remove the .grid().

Friedrich

------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to