MCPcopy Index your code
hub / github.com/python/cpython / call_later

Method call_later

Lib/asyncio/events.py:314–315  ·  view source on GitHub ↗
(self, delay, callback, *args, context=None)

Source from the content-addressed store, hash-verified

312 return self.call_later(0, callback, *args, context=context)
313
314 def call_later(self, delay, callback, *args, context=None):
315 raise NotImplementedError
316
317 def call_at(self, when, callback, *args, context=None):
318 raise NotImplementedError

Callers 7

call_soonMethod · 0.95
_accept_connectionMethod · 0.45
_start_handshakeMethod · 0.45
_start_shutdownMethod · 0.45
_waitFunction · 0.45
__init__Method · 0.45
sleepFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected