你怎么闯进从Python源代码调试器?(How do you break into the debu

2019-07-20 09:33发布

你怎么插入Python源代码把它分解成PDB(当执行到达那个地方)?

Answer 1:

import pdb; pdb.set_trace()

见的Python:在调试器编码初学者 ,这和更有帮助的提示。



文章来源: How do you break into the debugger from Python source code?