Return True if the widget is busy, False otherwise.
(self)
| 1009 | busy = busy_hold = tk_busy = tk_busy_hold |
| 1010 | |
| 1011 | def tk_busy_status(self): |
| 1012 | """Return True if the widget is busy, False otherwise.""" |
| 1013 | return self.tk.getboolean(self.tk.call( |
| 1014 | 'tk', 'busy', 'status', self._w)) |
| 1015 | busy_status = tk_busy_status |
| 1016 | |
| 1017 | # Clipboard handling: |