summaryrefslogtreecommitdiff
path: root/Lib/idlelib/ObjectBrowser.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-08-22 15:45:46 +0000
committerGuido van Rossum <guido@python.org>2006-08-22 15:45:46 +0000
commit76c450acc434f0f43e2116a14d3817bead119bd0 (patch)
tree0aa4aa895873070aed2fdbcd17dff750bd126167 /Lib/idlelib/ObjectBrowser.py
parent53d559b49e3f226dbe11517570d92c5949a3f969 (diff)
downloadcpython-76c450acc434f0f43e2116a14d3817bead119bd0.tar.gz
Remove has_key() references from idlelib. IDLE still doesn't run due
to relative import issues. Any volunteers?
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 a2a6cee498..b4f64b6fb2 100644
--- a/Lib/idlelib/ObjectBrowser.py
+++ b/Lib/idlelib/ObjectBrowser.py
@@ -126,7 +126,7 @@ dispatch = {
def make_objecttreeitem(labeltext, object, setfunction=None):
t = type(object)
- if dispatch.has_key(t):
+ if t in dispatch:
c = dispatch[t]
else:
c = ObjectTreeItem