Return the name of all Tcl interpreters for this display.
(self, displayof=0)
| 1158 | return int(self.tk.call('winfo', 'id', self._w), 0) |
| 1159 | |
| 1160 | def winfo_interps(self, displayof=0): |
| 1161 | """Return the name of all Tcl interpreters for this display.""" |
| 1162 | args = ('winfo', 'interps') + self._displayof(displayof) |
| 1163 | return self.tk.splitlist(self.tk.call(args)) |
| 1164 | |
| 1165 | def winfo_ismapped(self): |
| 1166 | """Return true if this widget is mapped.""" |
nothing calls this directly
no test coverage detected