gpt4 book ai didi

python - 中断(暂停)在 pdb 中运行 Python 程序?

转载 作者:IT老高 更新时间:2023-10-28 20:40:33 25 4
gpt4 key购买 nike

在 gdb 中,您可以通过 C-c 中断(暂停)程序并恢复。

你能在 pdb 中做到这一点吗?

最佳答案

不,python2 的 pdb 不支持此功能,但您可以将此代码添加到程序中作为解决方法:

def debug_signal_handler(signal, frame):
import pdb
pdb.set_trace()
import signal
signal.signal(signal.SIGINT, debug_signal_handler)

相关问题:

关于python - 中断(暂停)在 pdb 中运行 Python 程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10239760/

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