[Python-checkins] CVS: python/dist/src/Doc/lib libpdb.tex,1.29,1.30 libtraceback.tex,1.13,1.14

Fred L. Drake fdrake@users.sourceforge.net
Tue, 13 Feb 2001 19:20:20 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv26537/lib

Modified Files:
	libpdb.tex libtraceback.tex 
Log Message:

Reflect change in traceback format:
"innermost last" --> "most recent call last"


Index: libpdb.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpdb.tex,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** libpdb.tex	2000/09/14 20:32:17	1.29
--- libpdb.tex	2001/02/14 03:20:18	1.30
***************
*** 49,53 ****
  >>> import mymodule
  >>> mymodule.test()
! Traceback (innermost last):
    File "<stdin>", line 1, in ?
    File "./mymodule.py", line 4, in test
--- 49,53 ----
  >>> import mymodule
  >>> mymodule.test()
! Traceback (most recent call last):
    File "<stdin>", line 1, in ?
    File "./mymodule.py", line 4, in test

Index: libtraceback.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtraceback.tex,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** libtraceback.tex	2000/07/16 19:01:10	1.13
--- libtraceback.tex	2001/02/14 03:20:18	1.14
***************
*** 34,38 ****
  This differs from \function{print_tb()} in the
  following ways: (1) if \var{traceback} is not \code{None}, it prints a
! header \samp{Traceback (innermost last):}; (2) it prints the
  exception \var{type} and \var{value} after the stack trace; (3) if
  \var{type} is \exception{SyntaxError} and \var{value} has the appropriate
--- 34,38 ----
  This differs from \function{print_tb()} in the
  following ways: (1) if \var{traceback} is not \code{None}, it prints a
! header \samp{Traceback (most recent call last):}; (2) it prints the
  exception \var{type} and \var{value} after the stack trace; (3) if
  \var{type} is \exception{SyntaxError} and \var{value} has the appropriate