MCPcopy Index your code
hub / github.com/RustPython/RustPython / after_idle

Method after_idle

Lib/tkinter/__init__.py:876–882  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

_adjustMethod · 0.80

Calls 1

afterMethod · 0.95

Tested by

no test coverage detected