For first ensure what you have installed package pdbpp (pip install pdbpp).
Pdb itâs beautiful and powerful tool for debugging python code.
But by default when I catch triggered breakpoint its looks very uninformative.
For example, this my breakpoint:
Hereâs what it looks like breakpoint in the console:
But hereâs what it should looks like:
Just add file .pdbrc.py in your home directory and add into file next lines:
import pdb
class Config(pdb.DefaultConfig):
sticky_by_default = True