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

Method winfo_exists

Lib/tkinter/__init__.py:1231–1234  ·  view source on GitHub ↗

Return true if this widget exists.

(self)

Source from the content-addressed store, hash-verified

1229 return self.tk.getint(self.tk.call('winfo', 'depth', self._w))
1230
1231 def winfo_exists(self):
1232 """Return true if this widget exists."""
1233 return self.tk.getint(
1234 self.tk.call('winfo', 'exists', self._w))
1235
1236 def winfo_fpixels(self, number):
1237 """Return the number of pixels for the given distance NUMBER

Callers

nothing calls this directly

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected