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)
| 1485 | self.tk.call('update') |
| 1486 | |
| 1487 | def update_idletasks(self): |
| 1488 | """Enter event loop until all idle callbacks have been called. This |
| 1489 | will update the display of windows but not process events caused by |
| 1490 | the user.""" |
| 1491 | self.tk.call('update', 'idletasks') |
| 1492 | |
| 1493 | def bindtags(self, tagList=None): |
| 1494 | """Set or get the list of bindtags for this widget. |