gpt4 book ai didi

python - 如何查看PDB中当前调试函数的返回值?

转载 作者:太空宇宙 更新时间:2023-11-04 02:22:16 26 4
gpt4 key购买 nike

在检查 pdb 中的函数时,我可以 run the r(eturn) command ,它将继续到函数返回的地方。

如何打印(或检查)随后返回的值?

最佳答案

您可以使用变量__return__(官方文档中没有引用,但您可以在源代码中找到一些实现细节:user_returndo_retval)

def do_it():
res = 'return me this'

import pdb;
pdb.set_trace()
return res


then = do_it()


> debug_it.py(7)do_it()
-> return res
(Pdb) r
--Return--
> debug_it.py(7)do_it()->'return me this'
-> return res
(Pdb) __return__
'return me this'

(另一个 S.O post 解释了这个变量)

关于python - 如何查看PDB中当前调试函数的返回值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51318006/

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