commit | 58a7856961c9202ed80d0f72a7f0c4a116a41622 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Nov 27 19:47:42 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Nov 27 19:47:42 1996 +0000 |
tree | a64f8a199070e98c814d7b7f3f5e52284c7a7579 | |
parent | 499181a833cb04e54eec1798f402b742935e7bb9 [diff] [blame] |
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 58fdfac..360f973 100644 --- a/Demo/tkinter/matt/entry-with-shared-variable.py +++ b/Demo/tkinter/matt/entry-with-shared-variable.py
@@ -8,7 +8,7 @@ Frame.__init__(self, master) self.pack() - self.entrythingy = Entry() + self.entrythingy = Entry(self) self.entrythingy.pack() self.button = Button(self, text="Uppercase The Entry",