mirror of
https://github.com/python/cpython.git
synced 2025-09-19 07:00:59 +00:00
Issue #1342811: Fixed broken patch. Reviewed by benjamin.peterson.
This commit is contained in:
parent
5c2bb1a7d4
commit
af1aae3aa6
1 changed files with 7 additions and 5 deletions
|
@ -2662,7 +2662,9 @@ class Menu(Widget):
|
|||
if index2 is None:
|
||||
index2 = index1
|
||||
cmds = []
|
||||
for i in range(self.index(index1), self.index(index2)+1):
|
||||
(num_index1, num_index2) = (self.index(index1), self.index(index2))
|
||||
if (num_index1 is not None) and (num_index2 is not None):
|
||||
for i in range(num_index1, num_index2 + 1):
|
||||
if 'command' in self.entryconfig(i):
|
||||
c = str(self.entrycget(i, 'command'))
|
||||
if c in self._tclCommands:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue