diff options
author | Guido van Rossum <guido@python.org> | 2001-01-20 17:57:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-20 17:57:37 (GMT) |
commit | 6bd6835c1f68509a0bb9d82f98873a32c1475142 (patch) | |
tree | eddac08cb457c03247273b9fdae841bbca4acba0 /Lib | |
parent | 663f6c2ad288b2e8bc1a1a50d29e12df4f755d5b (diff) | |
download | cpython-6bd6835c1f68509a0bb9d82f98873a32c1475142.zip cpython-6bd6835c1f68509a0bb9d82f98873a32c1475142.tar.gz cpython-6bd6835c1f68509a0bb9d82f98873a32c1475142.tar.bz2 |
I've been using gdb a lot lately -- I'm missing 'bt' as a command in
pdb (pdb calls it 'where'). Added 'bt' as an alias for 'where'.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/pdb.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -450,6 +450,7 @@ class Pdb(bdb.Bdb, cmd.Cmd): def do_where(self, arg): self.print_stack_trace() do_w = do_where + do_bt = do_where def do_up(self, arg): if self.curindex == 0: @@ -665,7 +666,9 @@ With a command name as argument, print help about that command print """w(here) Print a stack trace, with the most recent frame at the bottom. An arrow indicates the "current frame", which determines the -context of most commands.""" +context of most commands. 'bt' is an alias for this command.""" + + help_bt = help_w def help_down(self): self.help_d() |