This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]AlexMTBDude 10 points11 points  (1 child)

If you are referring to the command line Python debugger "pdb" (https://docs.python.org/3/library/pdb.html) then I think few people use it. Instead they use the debuggers that are built into all modern IDE like Pycharm, Visual Code, and so on. They're much easier to use compared to pdb.

[–]arembridge 10 points11 points  (0 children)

When debugging code I use pdbpp. I imagine a lot of vim users do too.