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

Method winfo_exists

Lib/tkinter/__init__.py:1249–1252  ·  view source on GitHub ↗

Return true if this widget exists.

(self)

Source from the content-addressed store, hash-verified

1247 return self.tk.getint(self.tk.call('winfo', 'depth', self._w))
1248
1249 def winfo_exists(self):
1250 """Return true if this widget exists."""
1251 return self.tk.getint(
1252 self.tk.call('winfo', 'exists', self._w))
1253
1254 def winfo_fpixels(self, number):
1255 """Return the number of pixels for the given distance NUMBER

Callers 1

test_mainloopMethod · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by 1

test_mainloopMethod · 0.64