gpt4 book ai didi

python - 跨过 yield 语句

转载 作者:太空狗 更新时间:2023-10-30 01:39:15 27 4
gpt4 key购买 nike

在 Python 调试器 (pdb) 中时,我想跳过 yield 语句,但点击 (n) 进行下一步会将我带到 yield 的目的地,即生成器的使用者。我想转到生成器中执行的下一行。有什么办法吗?

我正在使用 Python 2.6

最佳答案

如果你的调试器允许你使用断点和更改变量值,那么它就像[在伪代码中]一样简单

Set Boolean yieldValue to true;
[breakpoint after that line is executed, you can set yieldValue to false here]
if yieldValue, yield value;

in other words:

bool yieldValue = true;
[breakpoint here]
if(yieldValue) yield value;

请注意,您通常不能在空行上设置断点。不过,您必须将其粘贴在 if 语句之前。

关于python - 跨过 yield 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2892746/

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