Python 有一个单步调试器模块,能实现基本的调试效果!详情请看Python标准文档说明:https://docs.python.org/2/library/pdb.html
调试例子:
>>> import pdb >>> import mymodule >>> pdb.run(‘mymodule.test()‘) > <string>(0)?() (Pdb) continue > <string>(1)?() (Pdb) continue NameError: ‘spam‘ > <string>(1)?() (Pdb)
时间: 2024-10-20 07:27:29