Return the name of all Tcl interpreters for this display.
(self, displayof=0)
| 1253 | return int(self.tk.call('winfo', 'id', self._w), 0) |
| 1254 | |
| 1255 | def winfo_interps(self, displayof=0): |
| 1256 | """Return the name of all Tcl interpreters for this display.""" |
| 1257 | args = ('winfo', 'interps') + self._displayof(displayof) |
| 1258 | return self.tk.splitlist(self.tk.call(args)) |
| 1259 | |
| 1260 | def winfo_ismapped(self): |
| 1261 | """Return true if this widget is mapped.""" |
nothing calls this directly
no test coverage detected