Lines Matching refs:inner
1810 # Cancelling outer() cancels inner() cancels waiter.
1814 async def inner():
1822 self.fail('got past sleep() in inner()')
1827 await inner()
1841 # Cancelling outer() makes wait() return early, leaves inner()
1846 async def inner():
1854 d, p = await asyncio.wait([asyncio.create_task(inner())])
1867 inner = self.new_future(self.loop)
1868 outer = asyncio.shield(inner)
1869 inner.set_result(42)
1874 inner = self.new_future(self.loop)
1875 outer = asyncio.shield(inner)
1878 inner.set_exception(exc)
1883 inner = self.new_future(self.loop)
1884 outer = asyncio.shield(inner)
1886 inner.cancel()
1891 inner = self.new_future(self.loop)
1892 outer = asyncio.shield(inner)
1906 # Cancelling outer() does not affect inner().
1910 async def inner():
1917 await asyncio.shield(inner())
1964 inner = coro()
1965 self.addCleanup(inner.close)
1967 asyncio.shield(inner)
2161 'raised by inner task to the gather() caller.'
2241 async def inner():
2245 task = asyncio.create_task(inner())
3121 async def inner():
3126 child1 = asyncio.ensure_future(inner(), loop=self.one_loop)
3127 child2 = asyncio.ensure_future(inner(), loop=self.one_loop)
3151 async def inner(f):
3159 await asyncio.gather(inner(a), inner(b))