Return the index of a menu item identified by INDEX.
(self, index)
| 3449 | entryconfig = entryconfigure |
| 3450 | |
| 3451 | def index(self, index): |
| 3452 | """Return the index of a menu item identified by INDEX.""" |
| 3453 | i = self.tk.call(self._w, 'index', index) |
| 3454 | return None if i in ('', 'none') else self.tk.getint(i) # GH-103685. |
| 3455 | |
| 3456 | def invoke(self, index): |
| 3457 | """Invoke a menu item identified by INDEX and execute |