标签: python python-2.7 debugging interactive pdb
在Python 3.2+中,有一个(可爱的)选项可以使用pdb.set_trace()进行调试,然后键入interact来打开一个交互式解释器。
pdb.set_trace()
interact
但是在Python 2.7中,交互命令不存在-它不在docs中,并且以NameError出错。
NameError
如何使用或实现interact Python 2.7?
如果要做到这一点不容易或不可能,我该如何在代码中的某个时刻打开交互式解释器?