AbstractEventLoop.create_future()
Create an asyncio.Future
object attached to the loop.
This is a preferred way to create futures in asyncio, as event loop implementations can provide alternative implementations of the Future class (with better performance or instrumentation).
New in version 3.5.2.
Please login to continue.