IPython导入模块的逐步调试
我想在导入的模块中设置断点并逐步从python" title="ipython">ipython进行调试。IPython导入模块的逐步调试
我从ipython调用单独的函数,而不是整个模块,所以%run不是一个选项。
回答:
有关完整说明,请参阅我的blog entry。
总结:
from IPython.core.debugger import Pdb ipdb = Pdb()
ipdb.runcall(my_imported_function, args...)
以上是 IPython导入模块的逐步调试 的全部内容, 来源链接: utcz.com/qa/259578.html