summaryrefslogtreecommitdiff
path: root/Lib/idlelib/ObjectBrowser.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
commit6634bf2919d855ccd821e878b8cc00c7209f1cbe (patch)
tree77ef2dfaaf00ec144e75ac19708e4dd457604ebc /Lib/idlelib/ObjectBrowser.py
parent33cece05b918dff706a4298e33f84d8e8a0391d2 (diff)
downloadcpython-git-6634bf2919d855ccd821e878b8cc00c7209f1cbe.tar.gz
Tkinter rename reversal: remove tkinter package, adapt imports and docs.
Diffstat (limited to 'Lib/idlelib/ObjectBrowser.py')
-rw-r--r--Lib/idlelib/ObjectBrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/ObjectBrowser.py b/Lib/idlelib/ObjectBrowser.py
index c328cdcb77..8ff0041766 100644
--- a/Lib/idlelib/ObjectBrowser.py
+++ b/Lib/idlelib/ObjectBrowser.py
@@ -136,7 +136,7 @@ def make_objecttreeitem(labeltext, object, setfunction=None):
def _test():
import sys
- from tkinter import Tk
+ from Tkinter import Tk
root = Tk()
root.configure(bd=0, bg="yellow")
root.focus_set()