[Python-checkins] python/dist/src/Doc/lib tkinter.tex,1.25,1.26

facundobatista at users.sourceforge.net facundobatista at users.sourceforge.net
Sat Oct 16 23:40:38 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9414

Modified Files:
	tkinter.tex 
Log Message:
SF Bug #1046800: Importing Tkinter correctly (thanks Vishnu).

Index: tkinter.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/tkinter.tex,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- tkinter.tex	11 Sep 2004 16:50:05 -0000	1.25
+++ tkinter.tex	16 Oct 2004 21:40:35 -0000	1.26
@@ -664,7 +664,7 @@
 Here are some examples of typical usage:
 
 \begin{verbatim}
-import Tkinter
+from Tkinter import *
 class App(Frame):
     def __init__(self, master=None):
         Frame.__init__(self, master)



More information about the Python-checkins mailing list