gpt4 book ai didi

python - 在 contextlib.contextmanager 中产生

转载 作者:行者123 更新时间:2023-12-04 15:13:14 24 4
gpt4 key购买 nike

为什么我可以跳过在 yield log_func 中调用 log_func,即我可以只写 yield 而代码仍然有效。这是为什么? yield 在这种情况下如何工作?

import time
from contextlib import contextmanager

@contextmanager
def log_exec(log_func):
s = time.perf_counter()
yield log_func
e = time.perf_counter()
log_func(e - s)

with log_exec(log.debug):
time.sleep(1)

最佳答案

摘自 documentation :

This iterator must yield exactly one value, which will be bound to the targets in the with statement’s as clause, if any.

您没有使用 as 子句,因此结果没有改变。但是,如果您尝试将它与空的 yield 一起使用,您将看到 yield 的值为 None

with log_exec(debug) as log_foo:
print(log_foo)
time.sleep(1)

关于python - 在 contextlib.contextmanager 中产生,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64820090/

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