This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Error in the given example
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: facundobatista, terry.reedy, vishnube
Priority: normal Keywords:

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:07adminsetgithub: 41017
2004-10-14 04:55:04vishnubecreate