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

Method tk_busy_hold

Lib/tkinter/__init__.py:995–1008  ·  view source on GitHub ↗

Make this widget appear busy. The specified widget and its descendants will be blocked from user interactions. Normally update() should be called immediately afterward to insure that the hold operation is in effect before the application starts its processing.

(self, **kw)

Source from the content-addressed store, hash-verified

993 busy_forget = tk_busy_forget
994
995 def tk_busy_hold(self, **kw):
996 """Make this widget appear busy.
997
998 The specified widget and its descendants will be blocked from
999 user interactions. Normally update() should be called
1000 immediately afterward to insure that the hold operation is in
1001 effect before the application starts its processing.
1002
1003 The only supported configuration option is:
1004
1005 cursor: the cursor to be displayed when the widget is made
1006 busy.
1007 """
1008 self.tk.call('tk', 'busy', 'hold', self._w, *self._options(kw))
1009 busy = busy_hold = tk_busy = tk_busy_hold
1010
1011 def tk_busy_status(self):

Callers 2

test_tk_busyMethod · 0.80

Calls 2

_optionsMethod · 0.95
callMethod · 0.45

Tested by 2

test_tk_busyMethod · 0.64