Return True if the widget is busy, False otherwise.
(self)
| 991 | busy = busy_hold = tk_busy = tk_busy_hold |
| 992 | |
| 993 | def tk_busy_status(self): |
| 994 | """Return True if the widget is busy, False otherwise.""" |
| 995 | return self.tk.getboolean(self.tk.call( |
| 996 | 'tk', 'busy', 'status', self._w)) |
| 997 | busy_status = tk_busy_status |
| 998 | |
| 999 | # Clipboard handling: |
nothing calls this directly
no test coverage detected