|
|
|
|
|
by hwayne
1057 days ago
|
|
A couple people already pointed out that you can write `breakpoint()` instead of using `pdb.set_trace()`. Here's one more trick: you can use `pdb` to run scripts! `python -m pdb foo.py` will run `foo.py` but trigger a breakpoint on the first error. |
|