Re: [Tutor] Tkinter - master attribute

2010-06-16 Thread Jim Byrnes
ALAN GAULD wrote: I still am having trouble understanding the use of "master" in Tkinter. I think the problem is I can't find any reference that explains the concept around master, If you read the GUI topic in my tutorial it explains the concept of a containment tree that is common to ost GU

Re: [Tutor] Tkinter - master attribute

2010-06-15 Thread ALAN GAULD
> I still am having trouble understanding the use of "master" in > Tkinter. I think the problem is I can't find any reference that explains the > concept around master, If you read the GUI topic in my tutorial it explains the concept of a containment tree that is common to ost GUI frameworks

Re: [Tutor] Tkinter - master attribute

2010-06-15 Thread Jim Byrnes
Alan Gauld wrote: "Jim Byrnes" wrote in When reading code examples I see things like theframe.master.title('spam) def __init__(self, master): frame = Frame(master) When I encounter these I tend to get bogged down trying to decide if "master" has special meaning or is just a name the

Re: [Tutor] Tkinter - master attribute

2010-06-08 Thread Alan Gauld
"Jim Byrnes" wrote in When reading code examples I see things like theframe.master.title('spam) def __init__(self, master): frame = Frame(master) When I encounter these I tend to get bogged down trying to decide if "master" has special meaning or is just a name the author has cho

Re: [Tutor] Tkinter - master attribute

2010-06-08 Thread Steven D'Aprano
On Wed, 9 Jun 2010 02:38:28 am Jim Byrnes wrote: > When reading code examples I see things like > theframe.master.title('spam) or > def __init__(self, master): > frame = Frame(master) > > When I encounter these I tend to get bogged down trying to decide if > "master" has special meaning or is

[Tutor] Tkinter - master attribute

2010-06-08 Thread Jim Byrnes
When reading code examples I see things like theframe.master.title('spam) or def __init__(self, master): frame = Frame(master) When I encounter these I tend to get bogged down trying to decide if "master" has special meaning or is just a name the author has chosen. For example is it simila