Enter event loop until all idle callbacks have been called. This will update the display of windows but not process events caused by the user.
(self)
| 1467 | self.tk.call('update') |
| 1468 | |
| 1469 | def update_idletasks(self): |
| 1470 | """Enter event loop until all idle callbacks have been called. This |
| 1471 | will update the display of windows but not process events caused by |
| 1472 | the user.""" |
| 1473 | self.tk.call('update', 'idletasks') |
| 1474 | |
| 1475 | def bindtags(self, tagList=None): |
| 1476 | """Set or get the list of bindtags for this widget. |
no test coverage detected