在 Fabric 中以非详细模式添加 with 语句 (Python)
我现在有以下代码
if (verbose):
with hide('running', 'stdout', 'stderr'):
line 1
line 2
else:
line 1
line 2
有什么办法可以避免第1行和第2行的重复吗?
I have the following code now
if (verbose):
with hide('running', 'stdout', 'stderr'):
line 1
line 2
else:
line 1
line 2
Is there any way to avoid the repetition of line1 and line 2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管对于仅重复 2 次 2 行的情况来说,这可能有点过分了。但我认为它不止 2 行:)
Though this might be overkill for only 2 repetitions of 2 lines. But I assume it are more then 2 lines :)