/third_party/python/Lib/test/ |
D | test_asyncgen.py | 397 self.assertTrue(inspect.isawaitable(g.aclose())) 968 await gen.aclose() 993 await gen.aclose() 1020 await gen.aclose() 1081 await g.aclose() 1118 await g.aclose() 1146 await gen.aclose() 1611 await it.aclose() # prevent unfinished iterator warning 1622 nxt = it.aclose() 1640 await it.aclose() [all …]
|
D | test_contextlib_async.py | 334 async def aclose(self): member in AclosingTestCase.test_aclosing.C 346 async def aclose(self): member in AclosingTestCase.test_aclosing_error.C 406 return self.run_coroutine(self.aclose())
|
D | test_collections.py | 1222 def aclose(self): pass member in TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen1 1228 def aclose(self): pass member in TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen2 1232 def aclose(self): pass member in TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen3 1246 async def aclose(self): pass member in TestOneTrickPonyABCs.test_AsyncGenerator.Gen 1281 self.assertIsNone(run_async(mgen.aclose())) 1290 run_async(FailOnClose().aclose()) 1297 run_async(IgnoreGeneratorExit().aclose())
|
/third_party/python/Lib/ |
D | contextlib.py | 366 await self.thing.aclose() 654 async def aclose(self): member in AsyncExitStack
|
D | _collections_abc.py | 232 async def aclose(self): member in AsyncGenerator
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b4.rst | 106 Fix asynchronous generators aclose() and athrow() to handle
|
D | 3.9.0a4.rst | 75 ``aclose`` on an async generator that had already been closed or exhausted.
|
D | 3.9.0a2.rst | 227 Ignore GeneratorExit exceptions when throwing an exception into the aclose
|
D | 3.9.0a1.rst | 1061 Prohibit parallel running of aclose() / asend() / athrow(). Fix ag_running
|
D | 3.7.0a1.rst | 1511 Fix asynchronous generators aclose() and athrow() to handle
|
D | 3.8.0a1.rst | 3143 ``asyncio.StreamWriter.aclose()`` coroutines. Methods are needed for
|
/third_party/node/deps/cares/include/ |
D | ares.h | 404 int(*aclose)(ares_socket_t, void *); member
|
/third_party/python/Doc/library/ |
D | contextlib.rst | 186 Return an async context manager that calls the ``aclose()`` method of *thing* 196 await thing.aclose() 582 The :meth:`close` method is not implemented, :meth:`aclose` must be used 599 .. coroutinemethod:: aclose()
|
D | collections.abc.rst | 179 :class:`AsyncGenerator` [1]_ :class:`AsyncIterator` ``asend``, ``athrow`` ``aclose``, ``__aiter…
|
D | asyncio-eventloop.rst | 163 close with an :meth:`~agen.aclose()` call. After calling this method,
|
/third_party/python/Lib/asyncio/ |
D | base_events.py | 519 self.call_soon_threadsafe(self.create_task, agen.aclose()) 543 *[ag.aclose() for ag in closing_agens],
|
/third_party/python/Doc/reference/ |
D | expressions.rst | 653 :meth:`~agen.aclose` method to finalize the generator and ultimately detach it 663 generator-iterator's :meth:`~agen.aclose` method and run the resulting 669 presumably calls :meth:`~agen.aclose` and executes the coroutine. 738 .. coroutinemethod:: agen.aclose() 751 further calls to :meth:`aclose` will return an awaitable that does nothing.
|
/third_party/node/deps/cares/src/lib/ |
D | ares_process.c | 1545 channel->sock_funcs->aclose(s, channel->sock_func_cb_data); in ares__close_socket()
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 259 * Parallel running of :meth:`~agen.aclose` / :meth:`~agen.asend` /
|