summaryrefslogtreecommitdiff
path: root/Lib/idlelib/PathBrowser.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/PathBrowser.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/PathBrowser.py')
-rw-r--r--Lib/idlelib/PathBrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/PathBrowser.py b/Lib/idlelib/PathBrowser.py
index 86cd2707dc..8c73587904 100644
--- a/Lib/idlelib/PathBrowser.py
+++ b/Lib/idlelib/PathBrowser.py
@@ -78,7 +78,7 @@ class DirBrowserTreeItem(TreeItem):
normed_name = os.path.normcase(name)
if normed_name[i:] == suff:
mod_name = name[:i]
- if not modules.has_key(mod_name):
+ if mod_name not in modules:
modules[mod_name] = None
sorted.append((normed_name, name))
allnames.remove(name)