[Python-checkins] cpython (merge default -> default): merge

christian.heimes python-checkins at python.org
Sun Jul 21 01:55:23 CEST 2013


http://hg.python.org/cpython/rev/251c09a9d411
changeset:   84752:251c09a9d411
parent:      84751:19a8c3e36cfb
parent:      84749:5643e873f06e
user:        Christian Heimes <christian at cheimes.de>
date:        Sun Jul 21 01:54:15 2013 +0200
summary:
  merge

files:
  Lib/idlelib/EditorWindow.py |  6 +++++-
  1 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -821,7 +821,11 @@
                     menuEventDict[menu[0]][prepstr(item[0])[1]] = item[1]
         for menubarItem in self.menudict:
             menu = self.menudict[menubarItem]
-            end = menu.index(END) + 1
+            end = menu.index(END)
+            if end is None:
+                # Skip empty menus
+                continue
+            end += 1
             for index in range(0, end):
                 if menu.type(index) == 'command':
                     accel = menu.entrycget(index, 'accelerator')

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list