Home
last modified time | relevance | path

Searched refs:aclose (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Lib/test/
Dtest_asyncgen.py397 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 …]
Dtest_contextlib_async.py334 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())
Dtest_collections.py1222 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/
Dcontextlib.py366 await self.thing.aclose()
654 async def aclose(self): member in AsyncExitStack
D_collections_abc.py232 async def aclose(self): member in AsyncGenerator
/third_party/python/Misc/NEWS.d/
D3.6.0b4.rst106 Fix asynchronous generators aclose() and athrow() to handle
D3.9.0a4.rst75 ``aclose`` on an async generator that had already been closed or exhausted.
D3.9.0a2.rst227 Ignore GeneratorExit exceptions when throwing an exception into the aclose
D3.9.0a1.rst1061 Prohibit parallel running of aclose() / asend() / athrow(). Fix ag_running
D3.7.0a1.rst1511 Fix asynchronous generators aclose() and athrow() to handle
D3.8.0a1.rst3143 ``asyncio.StreamWriter.aclose()`` coroutines. Methods are needed for
/third_party/node/deps/cares/include/
Dares.h404 int(*aclose)(ares_socket_t, void *); member
/third_party/python/Doc/library/
Dcontextlib.rst186 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()
Dcollections.abc.rst179 :class:`AsyncGenerator` [1]_ :class:`AsyncIterator` ``asend``, ``athrow`` ``aclose``, ``__aiter…
Dasyncio-eventloop.rst163 close with an :meth:`~agen.aclose()` call. After calling this method,
/third_party/python/Lib/asyncio/
Dbase_events.py519 self.call_soon_threadsafe(self.create_task, agen.aclose())
543 *[ag.aclose() for ag in closing_agens],
/third_party/python/Doc/reference/
Dexpressions.rst653 :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/
Dares_process.c1545 channel->sock_funcs->aclose(s, channel->sock_func_cb_data); in ares__close_socket()
/third_party/python/Doc/whatsnew/
D3.9.rst259 * Parallel running of :meth:`~agen.aclose` / :meth:`~agen.asend` /