上下文管理器
上下文管理器:实现__enter__方法和__exit__方法的类就是一个上下文管理器:
示例代码:
from contextlib import ContextDecorator class Mycontext(ContextDecorator): def __enter__(self): print('start') def __exit__(self, exc_type, exc_val, exc_tb): print('end') @Mycontext() def test(): print('hello') test()
版权声明:本文为wjun0原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。