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 代码时,我从命令行通过 ipdb 运行一个脚本,并设置了一些断点。然后我对一个或多个模块进行一些更改,然后重新运行。但是,如果我只是使用run模块,则不会重新加载。为了确保它们这样做,我可以完全退出并重新启动 Python,但是我需要重置所有断点,如果我有很多并且一遍又一遍地完成,这将是乏味的。
run
有没有办法重新启动 (i)pdb 中的运行,并确保所有模块都被递归重新加载?