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

Method tk_busy_forget

Lib/tkinter/__init__.py:987–992  ·  view source on GitHub ↗

Make this widget no longer busy. User events will again be received by the widget.

(self)

Source from the content-addressed store, hash-verified

985 busy_current = tk_busy_current
986
987 def tk_busy_forget(self):
988 """Make this widget no longer busy.
989
990 User events will again be received by the widget.
991 """
992 self.tk.call('tk', 'busy', 'forget', self._w)
993 busy_forget = tk_busy_forget
994
995 def tk_busy_hold(self, **kw):

Callers 2

test_tk_busyMethod · 0.80

Calls 1

callMethod · 0.45

Tested by 2

test_tk_busyMethod · 0.64