Thursday 3 December 2020

How to invoke Pycharm debugger from code?

I see it is possible to invoke pdb debugger from code using:

import pdb;    pdb.set_trace()

Is there an equivalent for Pycharm debugger? As I would prefer to only learn one debugger. I want to run, rather than debug initially as debug is much slower.

Can I invoke pycharm debugger from a code line in some way?



from How to invoke Pycharm debugger from code?

No comments:

Post a Comment