Create a Future object attached to the loop.
(self)
| 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. |
no outgoing calls
no test coverage detected