[Python-checkins] python/dist/src/Doc/lib tkinter.tex,1.31,1.32
birkenfeld@users.sourceforge.net
birkenfeld at users.sourceforge.net
Thu Sep 15 18:02:16 CEST 2005
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5462/Doc/lib
Modified Files:
tkinter.tex
Log Message:
patch [ 1277677 ] tkinter hello world example bug
Index: tkinter.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/tkinter.tex,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- tkinter.tex 29 Jan 2005 19:49:34 -0000 1.31
+++ tkinter.tex 15 Sep 2005 16:02:13 -0000 1.32
@@ -258,8 +258,10 @@
self.pack()
self.createWidgets()
-app = Application()
+root = Tk()
+app = Application(master=root)
app.mainloop()
+root.destroy()
\end{verbatim}
More information about the Python-checkins
mailing list