3
votes
How to show the output of ‘l’ in python pdb after every command entered
One way to do this is to alias your favourite commands to run the command and then l.
e.g.
(Pdb) alias s step ;; l
(Pdb) s
> /usr/lib/python2.5/distutils/core.py(14)<m …
