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, **kw)
| 892 | return self.tk.call('after', ms, name) |
| 893 | |
| 894 | def after_idle(self, func, *args, **kw): |
| 895 | """Call FUNC once if the Tcl main loop has no event to |
| 896 | process. |
| 897 | |
| 898 | Return an identifier to cancel the scheduling with |
| 899 | after_cancel.""" |
| 900 | return self.after('idle', func, *args, **kw) |
| 901 | |
| 902 | def after_cancel(self, id): |
| 903 | """Cancel scheduling of function identified with ID. |