考虑以下代码:
def inner(a):
if a == 75:
raise RuntimeError()
return a**2
def outer():
results = []
for a in range(100):
results.append(inner(a))
return results
outer()
在 IPython 中,引发异常后,%debug
行魔术会在以下范围内打开 python 调试器inner()
:
In [4]: %debug
> <ipython-input-3-eff43b15b2ef>(3)inner()
2 if a == 75:
----> 3 raise RuntimeError()
4 return a**2
ipdb> a
a = 75
ipdb> results
*** NameError: name 'results' is not defined
您如何告诉 (i)pdb 进入范围outer()
以保存到目前为止生成的结果?