I ran into an interesting issue debugging the other day … I used isort with pre-commit to automatically sort imports before committing my code. This is a huge time saver and I am very thankful for both tools, as well as black and flake8. They save a ton of time and they instantly boost the… Continue reading A debugging tale
Articles on pdb
The Pythonic Fast Lane, Digest of a 30 Min Mentoring Session
By Bob Belderbos on 12 February 2020
The other day I had an awesome mentoring session with a beginner Pythonista, amazing what 30 min of screen sharing can do. Read on to learn more …
How to Use Pdb to Debug Your Code
By Bob Belderbos on 24 October 2017
The larger part of our coding time is spent reading and debugging code already written. For this Python’s pdb is an unmissable module in your Python toolbox. In this article I show you the most common options and some practical examples.