How to show the output of 'l' in python pdb after every command entered - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:20:36Z http://stackoverflow.com/feeds/question/602599 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/602599/how-to-show-the-output-of-l-in-python-pdb-after-every-command-entered 3 How to show the output of 'l' in python pdb after every command entered Paul D. Eden 2009-03-02T14:51:11Z 2009-03-02T15:29:38Z <p>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.</p> <p>Is there a way to setup python pdb to do this?</p> http://stackoverflow.com/questions/602599/how-to-show-the-output-of-l-in-python-pdb-after-every-command-entered/602733#602733 2 Answer by Mykola Kharechko for How to show the output of 'l' in python pdb after every command entered Mykola Kharechko 2009-03-02T15:25:19Z 2009-03-02T15:25:19Z <p>';;' allow to separate commands</p> <pre> <code> [crchemist@test tmp]$ python t.py > /home/crchemist/tmp/t.py(7)() -> a() (Pdb) p a ;; l function a at 0xb7e96df4 2 b = 49 + 45 3 v = 'fff' 4 return v 5 6 import pdb; pdb.set_trace() 7 -> a() [EOF] (Pdb) s ;; l --Call-- > /home/crchemist/tmp/t.py(1)a() -> def a(): 1 -> def a(): 2 b = 49 + 45 3 v = 'fff' 4 return v 5 6 import pdb; pdb.set_trace() 7 a() [EOF] (Pdb) s ;; l > /home/crchemist/tmp/t.py(2)a() -> b = 49 + 45 1 def a(): 2 -> b = 49 + 45 3 v = 'fff' 4 return v 5 6 import pdb; pdb.set_trace() 7 a() [EOF] (Pdb) </code> </pre> http://stackoverflow.com/questions/602599/how-to-show-the-output-of-l-in-python-pdb-after-every-command-entered/602750#602750 3 Answer by Michael Twomey for How to show the output of 'l' in python pdb after every command entered Michael Twomey 2009-03-02T15:29:38Z 2009-03-02T15:29:38Z <p>One way to do this is to alias your favourite commands to run the command and then l.</p> <p>e.g.</p> <pre><code>(Pdb) alias s step ;; l (Pdb) s &gt; /usr/lib/python2.5/distutils/core.py(14)&lt;module&gt;() -&gt; from types import * 9 # This module should be kept compatible with Python 2.1. 10 11 __revision__ = "$Id: core.py 38672 2005-03-20 22:19:47Z fdrake $" 12 13 import sys, os 14 -&gt; from types import * 15 16 from distutils.debug import DEBUG 17 from distutils.errors import * 18 from distutils.util import grok_environment_error 19 </code></pre> <p>In your ~/.pdbrc you can add the aliases so you have them every time:</p> <pre><code>alias s step ;; l </code></pre>