MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / winfo_interps

Method winfo_interps

tools/python-3.11.9-amd64/Lib/tkinter/__init__.py:1160–1163  ·  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

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

Callers

nothing calls this directly

Calls 2

_displayofMethod · 0.95
callMethod · 0.80

Tested by

no test coverage detected