Kaydet (Commit) 58a78569 authored tarafından Guido van Rossum's avatar Guido van Rossum

Pass self as master to Entry() widget constructor.

üst 499181a8
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment