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

Method tk_busy_status

Lib/tkinter/__init__.py:993–996  ·  view source on GitHub ↗

Return True if the widget is busy, False otherwise.

(self)

Source from the content-addressed store, hash-verified

991 busy = busy_hold = tk_busy = tk_busy_hold
992
993 def tk_busy_status(self):
994 """Return True if the widget is busy, False otherwise."""
995 return self.tk.getboolean(self.tk.call(
996 'tk', 'busy', 'status', self._w))
997 busy_status = tk_busy_status
998
999 # Clipboard handling:

Callers

nothing calls this directly

Calls 2

getbooleanMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected