Call FUNC once if the Tcl main loop has no event to process. Return an identifier to cancel the scheduling with after_cancel.
(self, func, *args)
| 874 | return self.tk.call('after', ms, name) |
| 875 | |
| 876 | def after_idle(self, func, *args): |
| 877 | """Call FUNC once if the Tcl main loop has no event to |
| 878 | process. |
| 879 | |
| 880 | Return an identifier to cancel the scheduling with |
| 881 | after_cancel.""" |
| 882 | return self.after('idle', func, *args) |
| 883 | |
| 884 | def after_cancel(self, id): |
| 885 | """Cancel scheduling of function identified with ID. |