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

Method wait_visibility

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

762 self.tk.call('tkwait', 'window', window._w)
763
764 def wait_visibility(self, window=None):
765 """Wait until the visibility of a WIDGET changes
766 (e.g. it appears).
767
768 If no parameter is given self is used."""
769 if window is None:
770 window = self
771 self.tk.call('tkwait', 'visibility', window._w)
772
773 def setvar(self, name='PY_VAR', value='1'):
774 """Set Tcl variable NAME to VALUE."""

Callers 13

goMethod · 0.80
goMethod · 0.80
__init__Method · 0.80
test_focusMethod · 0.80
test_configureMethod · 0.80
test_unbind2Method · 0.80

Calls 1

callMethod · 0.45

Tested by 10

test_focusMethod · 0.64
test_configureMethod · 0.64
test_unbind2Method · 0.64
test_bind_eventsMethod · 0.64