MCPcopy Index your code
hub / github.com/python/cpython / winfo_interps

Method winfo_interps

Lib/tkinter/__init__.py:1273–1276  ·  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

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

Callers

nothing calls this directly

Calls 3

_displayofMethod · 0.95
splitlistMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected