summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/FileList.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/FileList.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/FileList.py')
-rw-r--r--Lib/idlelib/FileList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/FileList.py b/Lib/idlelib/FileList.py
index 4b57901..2ef0640 100644
--- a/Lib/idlelib/FileList.py
+++ b/Lib/idlelib/FileList.py
@@ -25,7 +25,7 @@ class FileList:
master=self.root)
return None
key = os.path.normcase(filename)
- if self.dict.has_key(key):
+ if key in self.dict:
edit = self.dict[key]
edit.top.wakeup()
return edit
@@ -79,7 +79,7 @@ class FileList:
newkey = os.path.normcase(filename)
if newkey == key:
return
- if self.dict.has_key(newkey):
+ if newkey in self.dict:
conflict = self.dict[newkey]
self.inversedict[conflict] = None
tkMessageBox.showerror(