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

Method call_soon

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

Source from the content-addressed store, hash-verified

309 raise NotImplementedError
310
311 def call_soon(self, callback, *args, context=None):
312 return self.call_later(0, callback, *args, context=context)
313
314 def call_later(self, delay, callback, *args, context=None):
315 raise NotImplementedError

Callers 15

_call_soonMethod · 0.45
connection_lostMethod · 0.45
_on_shutdown_completeMethod · 0.45
_do_read__bufferedMethod · 0.45
_resume_readingMethod · 0.45
_run_forever_setupMethod · 0.45
loop_accept_pipeMethod · 0.45
start_serving_pipeMethod · 0.45
_connect_pipesMethod · 0.45
_callMethod · 0.45
__init__Method · 0.45
_read_readyMethod · 0.45

Calls 1

call_laterMethod · 0.95

Tested by

no test coverage detected