Append an item to the Menu. Args: item: (MenuItem) the item to be appended.
(self, item)
| 1162 | self._items = [] |
| 1163 | |
| 1164 | def append(self, item): |
| 1165 | """Append an item to the Menu. |
| 1166 | |
| 1167 | Args: |
| 1168 | item: (MenuItem) the item to be appended. |
| 1169 | """ |
| 1170 | self._items.append(item) |
| 1171 | |
| 1172 | def insert(self, index, item): |
| 1173 | self._items.insert(index, item) |
no outgoing calls