- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
假设我有使用 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/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!