From 2784df7502255da3719d22a0946ce993e7e963f7 Mon Sep 17 00:00:00 2001 From: Facundo Batista Date: Sat, 16 Oct 2004 21:40:35 +0000 Subject: [PATCH] SF Bug #1046800: Importing Tkinter correctly (thanks Vishnu). --- Doc/lib/tkinter.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.40.0