ipdb如何将python调试器带到调用第三方代码的框架中



在我的python代码中,我有几个级别的调用堆栈,如下所示:

f1:user_func1 
  f2:**user_func2**
    f3:third_party_func1
      f4:third_party_func2
          f5:exception happens here. 

第三方代码中的某个地方发生了异常(帧f5(。我使用ipdb转到发生异常的帧,并使用up命令"u"将调试器带回我的代码调用第三方代码的帧(帧f2(。

有时第三方代码中有很多级别,所以我需要按u很多次。有没有办法快速将调试器带到调用第三方代码的代码框架中?

从ipdb命令行:

ipdb> help up
u(p) [count]
    Move the current frame count (default one) levels up in the
    stack trace (to an older frame).

相关内容

  • 没有找到相关文章

最新更新