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.
我正在查看 Python 标准库并看到 BDB 调试器框架。它有什么用,我能从中获得额外的价值吗?目前我使用 Eclipse/PyDev 和内部调试器,它也支持条件断点。我可以从 BDB 获得新的东西吗?
该bdb模块实现了 的基本调试器工具pdb.Pdb,这是用于从终端调试 Python 脚本的具体调试器类。
bdb
pdb.Pdb
除非您打算编写自己的调试器用户界面,否则您不需要使用bdb.