Issue 1046800: Error in the given example (original) (raw)

Issue1046800

Created on 2004-10-14 04:55 by vishnube, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg22685 - (view) Author: Vishnu (vishnube) Date: 2004-10-14 04:55
Python Documentation - Release 2.3.3 - December 19, 2003 In section, 16.1.6.5 The Window Manager, there is one problem exists in the given example. Please change the first line of the example FROM: import Tkinter TO: from Tkinter import * Thank you, Vishnu
msg22686 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2004-10-15 23:05
Logged In: YES user_id=593130 Or to 'from Tkinter import Frame' or prefix 'Frame' with 'Tkinter.' in its two appearances. However, OP's version is consistent with, for instance, 16.1.2.2.
msg22687 - (view) Author: Facundo Batista (facundobatista) * (Python committer) Date: 2004-10-16 21:44
Logged In: YES user_id=752496 Changed to "from Tkinter import *". Thank you!
History
Date User Action Args
2022-04-11 14:56:07 admin set github: 41017
2004-10-14 04:55:04 vishnube create