Home
last modified time | relevance | path

Searched refs:AsyncExitStack (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/test/
Dtest_contextlib_async.py4 AsyncExitStack, nullcontext, aclosing, contextmanager)
383 class SyncAsyncExitStack(AsyncExitStack):
437 async with AsyncExitStack() as stack:
456 async with AsyncExitStack() as stack:
512 async with AsyncExitStack() as stack:
/third_party/python/Lib/
Dcontextlib.py588 class AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager): class
/third_party/python/Doc/library/
Dcontextlib.rst575 .. class:: AsyncExitStack()
605 async with AsyncExitStack() as stack:
/third_party/python/Misc/NEWS.d/
D3.7.0b1.rst624 Add contextlib.AsyncExitStack. Patch by Alexander Mohr and Ilya Kulakov.
D3.10.1.rst815 Fix an edge case of :class:`ExitStack` and :class:`AsyncExitStack` exception
D3.8.0a1.rst5143 ``contextlib.ExitStack`` and ``contextlib.AsyncExitStack`` now use a method
/third_party/python/Doc/whatsnew/
D3.8.rst1733 :meth:`contextlib.AsyncExitStack.callback` and
1734 :meth:`contextlib.AsyncExitStack.push_async_callback`.
D3.7.rst835 :class:`~contextlib.AsyncExitStack` have been added to