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

Method create_future

Lib/asyncio/base_events.py:461–463  ·  view source on GitHub ↗

Create a Future object attached to the loop.

(self)

Source from the content-addressed store, hash-verified

459 )
460
461 def create_future(self):
462 """Create a Future object attached to the loop."""
463 return futures.Future(loop=self)
464
465 def create_task(self, coro, **kwargs):
466 """Schedule or begin executing a coroutine object.

Callers 10

start_tlsMethod · 0.95
connect_read_pipeMethod · 0.95
connect_write_pipeMethod · 0.95
__init__Method · 0.45
pause_writingMethod · 0.45
serve_foreverMethod · 0.45
wait_closedMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected