summaryrefslogtreecommitdiff
path: root/Lib/idlelib/OutputWindow.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-20 07:13:37 +0000
committerGeorg Brandl <georg@python.org>2008-05-20 07:13:37 +0000
commit5cb75f8398deef4a683ad610c06551cd085dc130 (patch)
tree0d3f7487eabe8aa33139aec4a6ef1e94447e95af /Lib/idlelib/OutputWindow.py
parent13feef20eeee2a44767acaeb21784f6c1f3e10f7 (diff)
downloadcpython-5cb75f8398deef4a683ad610c06551cd085dc130.tar.gz
Tkinter rename reversal: remove tkinter package, adapt imports and docs.
Diffstat (limited to 'Lib/idlelib/OutputWindow.py')
-rw-r--r--Lib/idlelib/OutputWindow.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/OutputWindow.py b/Lib/idlelib/OutputWindow.py
index afc4e3954e..787e9b0bba 100644
--- a/Lib/idlelib/OutputWindow.py
+++ b/Lib/idlelib/OutputWindow.py
@@ -1,7 +1,7 @@
-from tkinter import *
+from Tkinter import *
from EditorWindow import EditorWindow
import re
-import tkinter.messagebox as tkMessageBox
+import tkMessageBox
import IOBinding
class OutputWindow(EditorWindow):