Jump into a Python Interactive Session mid-program?

后端 未结 5 1293
陌清茗
陌清茗 2020-12-23 15:35

Hey I was wondering... I am using the pydev with eclipse and I\'m really enjoying the powerful debugging features, but I was wondering:

Is it possible to set

5条回答
  •  渐次进展
    2020-12-23 16:07

    If you are already running in debug mode you can set an additional breakpoint if the program execution is currently paused (e.g. because you are already at a breakpoint). I just tried it out now with the latest Pydev - it works just fine.

    If you are running normally (i.e. not in debug mode) all breakpoints will be ignored. No changes to breakpoints will alter the way a non-debug run works.

提交回复
热议问题