I would like to have the output of the python pdb 'l' command printed to the screen after every command I enter in an interactive debugging session.
Is there a way to setup python pdb to do this?
|
I would like to have the output of the python pdb 'l' command printed to the screen after every command I enter in an interactive debugging session. Is there a way to setup python pdb to do this?
| ||||
|
feedback
|
|
One way to do this is to alias your favourite commands to run the command and then l. e.g.
In your ~/.pdbrc you can add the aliases so you have them every time:
| |||
|
feedback
|
|
';;' allow to separate commands
| |||
|
feedback
|