I am wondering if there is a python debugger as powerful as gdb, for example at setting breakpoints, stepping into functions, and the like. I have been working with gdb in c and assembly and it has been excellent. SO is there a python debugger like so?
Asked
Active
Viewed 487 times
1 Answers
1
Yes, pdb might be what you are looking for.
There are many resources for how to use it. See this post for some resources: Getting started with the Python Debugger pdb.
-
Thanks a lot. That was awesome – Dark Eagle Jun 27 '16 at 22:03