Re: [Tutor] Super In tkinter class inheritance

2011-12-08 Thread Prasad, Ramit
class ChooseDestinationWindow(Frame): def __init__(self,master): super(ChooseDestinationWindow,self).__init_ _(master) What exactly does this super method since I have seen it numerous times before and as far as I can see it is not anything the user created himself in the class? This has to do

[Tutor] Super In tkinter class inheritance

2011-12-07 Thread George Nyoro
I was observing the tkinter code under the topic Creating arbitrary number of destinations. (GUI program) in the previous email and saw this super thing: class ChooseDestinationWindow(Frame): def __init__(self,master): super(ChooseDestinationWindow,self).__init_ _(master) What exactly does this

Re: [Tutor] Super In tkinter class inheritance

2011-12-07 Thread Alan Gauld
On 07/12/11 17:01, George Nyoro wrote: I was observing the tkinter code under the topic Creating arbitrary number of destinations. (GUI program) in the previous email and saw this super thing: class ChooseDestinationWindow(Frame): def __init__(self,master):