summaryrefslogtreecommitdiff
path: root/Lib/pdb.py
diff options
context:
space:
mode:
authorJohannes Gijsbers <jlg@dds.nl>2004-08-14 15:19:28 +0000
committerJohannes Gijsbers <jlg@dds.nl>2004-08-14 15:19:28 +0000
commit8d9693ba31a3e8c8c915eeeeff2d385ebf5f099d (patch)
tree625edbfd2d3960109ed9ade83b09ed0495ad12a5 /Lib/pdb.py
parente990af73e6b4e7a7474148e3ff9740aec9716559 (diff)
downloadcpython-8d9693ba31a3e8c8c915eeeeff2d385ebf5f099d.tar.gz
bug #989672: pdb.doc and the help messages for the help_d and help_u methods
of the pdb.Pdb class gives have been corrected. d(own) goes to a newer frame, u(p) to an older frame, not the other way around.
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-xLib/pdb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index b35164c9ec..58de097cff 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -755,7 +755,7 @@ context of most commands. 'bt' is an alias for this command."""
def help_d(self):
print """d(own)
Move the current frame one level down in the stack trace
-(to an older frame)."""
+(to a newer frame)."""
def help_up(self):
self.help_u()
@@ -763,7 +763,7 @@ Move the current frame one level down in the stack trace
def help_u(self):
print """u(p)
Move the current frame one level up in the stack trace
-(to a newer frame)."""
+(to an older frame)."""
def help_break(self):
self.help_b()