|
Author: Eduardo Enriquez
Debugging python with pdbpp or just pdb++, a drop-in replacement for clasic pdb.
Yo soy de los que prefieren usar el debugger de python: pdb.
Pero si extrañas el autocompletado y una guia linea por linea todo el tiempo te recomiendo pdbpp o pdb++. Repo aqui or github
pip install pdbpp
El modo "sticky" es inmejorable:
Para activarlo por default:
# en tu home dir crea un .pdbrc.py con estas lineas
import pdb
class Config(pdb.DefaultConfig):
sticky_by_default = True
# current_line_color = 40 # black para esconder el highlight
Recomiendo:
https://ixday.github.io/post/pdbpp/