changeset: 84747:f8df7c50132f branch: 2.7 parent: 84740:91374660355a user: Ned Deily date: Sat Jul 20 14:38:24 2013 -0700 files: Lib/idlelib/EditorWindow.py description: Issue #17532: Prevent exception when changing key sets if Options menu is empty. diff -r 91374660355a -r f8df7c50132f Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py Sat Jul 20 10:56:58 2013 -0700 +++ b/Lib/idlelib/EditorWindow.py Sat Jul 20 14:38:24 2013 -0700 @@ -833,7 +833,11 @@ menuEventDict[menu[0]][prepstr(item[0])[1]] = item[1] for menubarItem in self.menudict.keys(): 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')

AltStyle によって変換されたページ (->オリジナル) /