gpt4 book ai didi

Python延长with关键字范围内变量的生命周期

转载 作者:太空宇宙 更新时间:2023-11-03 17:04:00 24 4
gpt4 key购买 nike

假设我有使用 with 关键字打开文件的代码,并且我希望它在某些条件下关闭后保持打开状态。

所以假设最简单的函数:

def do_sth():
with open('/tmp/foobar') as f:
# do anything to stop f from closing

有没有办法绕过 python 解释器调用 f.__exit__() ?您可以假设,这应该适用于任何实现 __enter____exit__ 的类。

到目前为止,我尝试用另一个可关闭对象替换 f,如下所示:

d = open('/tmp/bsdf')
with open('/tmp/asdf') as f:
d,f = f,d
print "f {}, d {}".format(f.closed, d.closed)

一个潜在的用例是创建一个包装器,以便您可以执行以下操作:

with filehandle('foobar') as f:
# do something

# don't close if filehandle returns sys.stdout.

最佳答案

阅读后pep-0343我的结论是,这不应该是语义的一部分。

我发现的唯一选择是编写自己的上下文管理器来执行有条件释放。

from contextlib import contextmanager
import sys

@contextmanager
def custom_open(filename, mode='r'):
if filename is 'stdout':
yield sys.stdout
else:
try:
f = open(filename, mode)
except IOError, err:
yield None
else:
try:
yield f
finally:
f.close()


with custom_open('stdout') as f:
f.write('hello world\n')
print "f {}".format(f.closed)

with custom_open('/tmp/foobar', 'w+') as f:
f.write('hello world\n')
print "f {}".format(f.closed)

关于Python延长with关键字范围内变量的生命周期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34747543/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com