MCPcopy Index your code
hub / github.com/RustPython/RustPython / winfo_interps

Method winfo_interps

Lib/tkinter/__init__.py:1255–1258  ·  view source on GitHub ↗

Return the name of all Tcl interpreters for this display.

(self, displayof=0)

Source from the content-addressed store, hash-verified

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."""

Callers

nothing calls this directly

Calls 2

_displayofMethod · 0.95
callMethod · 0.45

Tested by

no test coverage detected