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

Method wait_visibility

Lib/tkinter/__init__.py:746–753  ·  view source on GitHub ↗

Wait until the visibility of a WIDGET changes (e.g. it appears). If no parameter is given self is used.

(self, window=None)

Source from the content-addressed store, hash-verified

744 self.tk.call('tkwait', 'window', window._w)
745
746 def wait_visibility(self, window=None):
747 """Wait until the visibility of a WIDGET changes
748 (e.g. it appears).
749
750 If no parameter is given self is used."""
751 if window is None:
752 window = self
753 self.tk.call('tkwait', 'visibility', window._w)
754
755 def setvar(self, name='PY_VAR', value='1'):
756 """Set Tcl variable NAME to VALUE."""

Callers 3

goMethod · 0.80
goMethod · 0.80
__init__Method · 0.80

Calls 1

callMethod · 0.45

Tested by

no test coverage detected