summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PathBrowser.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-08-22 15:45:46 (GMT)
committerGuido van Rossum <guido@python.org>2006-08-22 15:45:46 (GMT)
commit811c4e0b7cb1a3b43cda8dab0b1587983b44c58d (patch)
tree6d1172a99c68bba0391eb165c2ddcc75315b56ad /Lib/idlelib/PathBrowser.py
parentd204a715f4776fc2e5498e81c9e7a647e902b682 (diff)
downloadcpython-811c4e0b7cb1a3b43cda8dab0b1587983b44c58d.zip
cpython-811c4e0b7cb1a3b43cda8dab0b1587983b44c58d.tar.gz
cpython-811c4e0b7cb1a3b43cda8dab0b1587983b44c58d.tar.bz2
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 86cd270..8c73587 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)