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

Method tk_busy_status

Lib/tkinter/__init__.py:1011–1014  ·  view source on GitHub ↗

Return True if the widget is busy, False otherwise.

(self)

Source from the content-addressed store, hash-verified

1009 busy = busy_hold = tk_busy = tk_busy_hold
1010
1011 def tk_busy_status(self):
1012 """Return True if the widget is busy, False otherwise."""
1013 return self.tk.getboolean(self.tk.call(
1014 'tk', 'busy', 'status', self._w))
1015 busy_status = tk_busy_status
1016
1017 # Clipboard handling:

Callers 1

test_tk_busyMethod · 0.80

Calls 2

getbooleanMethod · 0.45
callMethod · 0.45

Tested by 1

test_tk_busyMethod · 0.64