Код: Выделить всё
@contextmanager
def AutoClose(obj):
try:
yield obj
finally:
obj.Close()
Подробнее здесь: https://stackoverflow.com/questions/181 ... sing-class
Код: Выделить всё
@contextmanager
def AutoClose(obj):
try:
yield obj
finally:
obj.Close()