From: Facundo Batista Date: Sat, 16 Oct 2004 21:40:35 +0000 (+0000) Subject: SF Bug #1046800: Importing Tkinter correctly (thanks Vishnu). X-Git-Tag: v2.4b2~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2784df7502255da3719d22a0946ce993e7e963f7;p=python SF Bug #1046800: Importing Tkinter correctly (thanks Vishnu). --- diff --git a/Doc/lib/tkinter.tex b/Doc/lib/tkinter.tex index cdc9b399f3..a2eac3679b 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)