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

Method tk_busy_cget

Lib/tkinter/__init__.py:938–945  ·  view source on GitHub ↗

Return the value of busy configuration option. The widget must have been previously made busy by tk_busy_hold(). Option may have any of the values accepted by tk_busy_hold().

(self, option)

Source from the content-addressed store, hash-verified

936 self.tk.call(('bell',) + self._displayof(displayof))
937
938 def tk_busy_cget(self, option):
939 """Return the value of busy configuration option.
940
941 The widget must have been previously made busy by
942 tk_busy_hold(). Option may have any of the values accepted by
943 tk_busy_hold().
944 """
945 return self.tk.call('tk', 'busy', 'cget', self._w, '-'+option)
946 busy_cget = tk_busy_cget
947
948 def tk_busy_configure(self, cnf=None, **kw):

Callers 2

test_tk_busyMethod · 0.80

Calls 1

callMethod · 0.45

Tested by 2

test_tk_busyMethod · 0.64