Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在用pdb调试一个python程序,python程序使用的是C写的模块,我想用“step”命令进入C写的模块中的函数,但是发现这个操作不能成功. 有什么方法可以使用 C 编写的 pdb 调试模块吗?提前致谢!
pdb不允许您调试用 C 编写的模块。但是,您可以使用它gdb来调试可能在 C 代码中遇到的错误。
pdb
gdb
要启动 Python 脚本,gdb您可以使用以下命令:
gdb python
然后执行你的脚本:
(gdb) run <myscript>.py