diff options
Diffstat (limited to 'Doc/lib/tkinter.tex')
-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) |