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",