[Python-checkins] python/dist/src/Lib pdb.doc, 1.8, 1.9 pdb.py, 1.67, 1.68

jlgijsbers at users.sourceforge.net jlgijsbers at users.sourceforge.net
Sat Aug 14 17:19:30 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29410/Lib

Modified Files:
	pdb.doc pdb.py 
Log Message:
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.


Index: pdb.doc
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pdb.doc,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** pdb.doc	17 Sep 1998 15:01:38 -0000	1.8
--- pdb.doc	14 Aug 2004 15:19:27 -0000	1.9
***************
*** 71,79 ****
  d(own)
          Move the current frame one level down in the stack trace
!         (to an older frame).
  
  u(p)
          Move the current frame one level up in the stack trace
!         (to a newer frame).
  
  b(reak) [ ([filename:]lineno | function) [, condition] ]
--- 71,79 ----
  d(own)
          Move the current frame one level down in the stack trace
!         (to a newer frame).
  
  u(p)
          Move the current frame one level up in the stack trace
!         (to an older frame).
  
  b(reak) [ ([filename:]lineno | function) [, condition] ]

Index: pdb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pdb.py,v
retrieving revision 1.67
retrieving revision 1.68
diff -C2 -d -r1.67 -r1.68
*** pdb.py	12 Feb 2004 17:35:06 -0000	1.67
--- pdb.py	14 Aug 2004 15:19:27 -0000	1.68
***************
*** 756,760 ****
          print """d(own)
  Move the current frame one level down in the stack trace
! (to an older frame)."""
  
      def help_up(self):
--- 756,760 ----
          print """d(own)
  Move the current frame one level down in the stack trace
! (to a newer frame)."""
  
      def help_up(self):
***************
*** 764,768 ****
          print """u(p)
  Move the current frame one level up in the stack trace
! (to a newer frame)."""
  
      def help_break(self):
--- 764,768 ----
          print """u(p)
  Move the current frame one level up in the stack trace
! (to an older frame)."""
  
      def help_break(self):



More information about the Python-checkins mailing list