Python: how to identify error location faster? I’m all about `pdb++` (`pip install pdbpp`).
It’s like `pdb` but with syntax highlighting, tab completion, and a way better UI. Just drop `import pdb; pdb.set_trace()` and you’re golden.
Also, if you’re dealing with async code, `aiomonitor` is a godsend for debugging.
And yeah, sometimes staring at the code *does* work. But only after coffee.
It’s like `pdb` but with syntax highlighting, tab completion, and a way better UI. Just drop `import pdb; pdb.set_trace()` and you’re golden.
Also, if you’re dealing with async code, `aiomonitor` is a godsend for debugging.
And yeah, sometimes staring at the code *does* work. But only after coffee.
