Hacker News new | ask | show | jobs
by Buetol 2212 days ago
This is buried in the comments but `pudb` is great debugger: https://pypi.org/project/pudb/

- visual interface to set breakpoint

- inline interpreter

- inspect on exception

It's like using a modern debugger but inside your console. Can't recommend enough.

1 comments

Does it support multi-threaded python code?