Return the name of all Tcl interpreters for this display.
(self, displayof=0)
| 1271 | return int(self.tk.call('winfo', 'id', self._w), 0) |
| 1272 | |
| 1273 | def winfo_interps(self, displayof=0): |
| 1274 | """Return the name of all Tcl interpreters for this display.""" |
| 1275 | args = ('winfo', 'interps') + self._displayof(displayof) |
| 1276 | return self.tk.splitlist(self.tk.call(args)) |
| 1277 | |
| 1278 | def winfo_ismapped(self): |
| 1279 | """Return true if this widget is mapped.""" |
nothing calls this directly
no test coverage detected