contextlib — 实用程序为 with 语句上下文

源代码: Lib/contextlib.py


本模块提供实用程序为常见任务涉及 with 语句。更多信息另请参阅 上下文管理器类型 and with 语句上下文管理器 .

实用工具

提供的函数和类:

class contextlib. AbstractContextManager

An 抽象基类 若类有实现 object.__enter__() and object.__exit__() 。默认实现若 object.__enter__() 有提供返回 self while object.__exit__() 是抽象方法,默认情况下返回 None 。另请参阅定义对于 上下文管理器类型 .

Added in version 3.6.