当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python contextlib.AsyncExitStack用法及代码示例


用法:

class contextlib.AsyncExitStack

一个异步上下文管理器,类似于 ExitStack ,它支持同步和异步上下文管理器的组合,以及用于清理逻辑的协程。

close() 方法未实现,必须改用aclose()

继续 asynccontextmanager() 的示例:

async with AsyncExitStack() as stack:
    connections = [await stack.enter_async_context(get_connection())
        for i in range(5)]
    # All opened connections will automatically be released at the end of
    # the async with statement, even if attempts to open a connection
    # later in the list raise an exception.

3.7 版中的新函数。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 contextlib.AsyncExitStack。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。