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

Method create_future

Lib/asyncio/base_events.py:457–459  ·  view source on GitHub ↗

Create a Future object attached to the loop.

(self)

Source from the content-addressed store, hash-verified

455 )
456
457 def create_future(self):
458 """Create a Future object attached to the loop."""
459 return futures.Future(loop=self)
460
461 def create_task(self, coro, **kwargs):
462 """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