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

Method winfo_viewable

Lib/tkinter/__init__.py:1406–1409  ·  view source on GitHub ↗

Return true if the widget and all its higher ancestors are mapped.

(self)

Source from the content-addressed store, hash-verified

1404 'winfo', 'toplevel', self._w))
1405
1406 def winfo_viewable(self):
1407 """Return true if the widget and all its higher ancestors are mapped."""
1408 return self.tk.getint(
1409 self.tk.call('winfo', 'viewable', self._w))
1410
1411 def winfo_visual(self):
1412 """Return one of the strings directcolor, grayscale, pseudocolor,

Callers 2

__init__Method · 0.80
is_tipwindow_shownMethod · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by 1

is_tipwindow_shownMethod · 0.64