diff options
author | Facundo Batista <facundobatista@gmail.com> | 2004-10-16 21:40:35 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2004-10-16 21:40:35 (GMT) |
commit | 2784df7502255da3719d22a0946ce993e7e963f7 (patch) | |
tree | 2d234769e6056627261e6fde2621fac70159f2af /Doc | |
parent | 2d1a50ca13309d10517d3eac59b90fdfa156b8a2 (diff) | |
download | cpython-2784df7502255da3719d22a0946ce993e7e963f7.zip cpython-2784df7502255da3719d22a0946ce993e7e963f7.tar.gz cpython-2784df7502255da3719d22a0946ce993e7e963f7.tar.bz2 |
SF Bug #1046800: Importing Tkinter correctly (thanks Vishnu).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/tkinter.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/tkinter.tex b/Doc/lib/tkinter.tex index cdc9b39..a2eac36 100644 --- a/Doc/lib/tkinter.tex +++ b/Doc/lib/tkinter.tex @@ -664,7 +664,7 @@ is part of the implementation, and not an interface to Tk functionality. 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) |