Returns the numeric index of the tab specified by tab_id, or the total number of tabs if tab_id is the string "end".
(self, tab_id)
| 846 | |
| 847 | |
| 848 | def index(self, tab_id): |
| 849 | """Returns the numeric index of the tab specified by tab_id, or |
| 850 | the total number of tabs if tab_id is the string "end".""" |
| 851 | return self.tk.getint(self.tk.call(self._w, "index", tab_id)) |
| 852 | |
| 853 | |
| 854 | def insert(self, pos, child, **kw): |
no test coverage detected