diff options
author | Guido van Rossum <guido@python.org> | 2006-08-22 15:45:46 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-22 15:45:46 +0000 |
commit | 811c4e0b7cb1a3b43cda8dab0b1587983b44c58d (patch) | |
tree | 6d1172a99c68bba0391eb165c2ddcc75315b56ad /Lib/idlelib/EditorWindow.py | |
parent | d204a715f4776fc2e5498e81c9e7a647e902b682 (diff) | |
download | cpython-git-811c4e0b7cb1a3b43cda8dab0b1587983b44c58d.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/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 6b8ab63ddc..dccd3ff9d1 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -648,8 +648,8 @@ class EditorWindow(object): if accel: itemName = menu.entrycget(index, 'label') event = '' - if menuEventDict.has_key(menubarItem): - if menuEventDict[menubarItem].has_key(itemName): + if menubarItem in menuEventDict: + if itemName in menuEventDict[menubarItem]: event = menuEventDict[menubarItem][itemName] if event: accel = get_accelerator(keydefs, event) |