[Python-3000-checkins] r63636 - python/branches/py3k/Lib/idlelib/EditorWindow.py

guilherme.polo python-3000-checkins at python.org
Sun May 25 17:26:45 CEST 2008


Author: guilherme.polo
Date: Sun May 25 17:26:44 2008
New Revision: 63636

Log:
Fixed old Tkinter import, the last apparently

Modified:
   python/branches/py3k/Lib/idlelib/EditorWindow.py

Modified: python/branches/py3k/Lib/idlelib/EditorWindow.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/EditorWindow.py	(original)
+++ python/branches/py3k/Lib/idlelib/EditorWindow.py	Sun May 25 17:26:44 2008
@@ -47,7 +47,7 @@
     from idlelib.UndoDelegator import UndoDelegator
     from idlelib.IOBinding import IOBinding, filesystemencoding, encoding
     from idlelib import Bindings
-    from Tkinter import Toplevel
+    from tkinter import Toplevel
     from idlelib.MultiStatusBar import MultiStatusBar
 
     help_url = None


More information about the Python-3000-checkins mailing list