From: Guido van Rossum Date: Wed, 27 Nov 1996 19:47:42 +0000 (+0000) Subject: Pass self as master to Entry() widget constructor. X-Git-Tag: v1.5a1~906 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58a7856961c9202ed80d0f72a7f0c4a116a41622;p=python Pass self as master to Entry() widget constructor. --- diff --git a/Demo/tkinter/matt/entry-with-shared-variable.py b/Demo/tkinter/matt/entry-with-shared-variable.py index 58fdfac58c..360f97373b 100644 --- a/Demo/tkinter/matt/entry-with-shared-variable.py +++ b/Demo/tkinter/matt/entry-with-shared-variable.py @@ -8,7 +8,7 @@ class App(Frame): Frame.__init__(self, master) self.pack() - self.entrythingy = Entry() + self.entrythingy = Entry(self) self.entrythingy.pack() self.button = Button(self, text="Uppercase The Entry",