Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_contextlib_async.py2 from contextlib import asynccontextmanager, AbstractAsyncContextManager, AsyncExitStack
261 class SyncAsyncExitStack(AsyncExitStack):
314 async with AsyncExitStack() as stack:
379 async with AsyncExitStack() as stack:
/external/python/cpython3/Lib/
Dcontextlib.py523 class AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager): class
/external/python/cpython3/Doc/library/
Dcontextlib.rst456 .. class:: AsyncExitStack()
486 async with AsyncExitStack() as stack:
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b1.rst625 Add contextlib.AsyncExitStack. Patch by Alexander Mohr and Ilya Kulakov.
/external/python/cpython3/Doc/whatsnew/
D3.7.rst829 :class:`~contextlib.AsyncExitStack` have been added to