()
| 2391 | |
| 2392 | fut = self.new_future(loop) |
| 2393 | async def create(): |
| 2394 | # The indirection fut->child_coro is needed since otherwise the |
| 2395 | # gathering task is done at the same time as the child future |
| 2396 | async def child_coro(): |
| 2397 | return await fut |
| 2398 | gather_future = asyncio.gather(child_coro()) |
| 2399 | return asyncio.ensure_future(gather_future) |
| 2400 | gather_task = loop.run_until_complete(create()) |
| 2401 | |
| 2402 | cancel_result = None |
no test coverage detected