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

Method tk_busy_current

Lib/tkinter/__init__.py:976–984  ·  view source on GitHub ↗

Return a list of widgets that are currently busy. If a pattern is given, only busy widgets whose path names match a pattern are returned.

(self, pattern=None)

Source from the content-addressed store, hash-verified

974 busy_config = busy_configure = tk_busy_config = tk_busy_configure
975
976 def tk_busy_current(self, pattern=None):
977 """Return a list of widgets that are currently busy.
978
979 If a pattern is given, only busy widgets whose path names match
980 a pattern are returned.
981 """
982 return [self._nametowidget(x) for x in
983 self.tk.splitlist(self.tk.call(
984 'tk', 'busy', 'current', pattern))]
985 busy_current = tk_busy_current
986
987 def tk_busy_forget(self):

Callers 1

test_tk_busyMethod · 0.80

Calls 2

splitlistMethod · 0.80
callMethod · 0.45

Tested by 1

test_tk_busyMethod · 0.64