diff options
author | Fred Drake <fdrake@acm.org> | 2001-02-14 03:20:18 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-02-14 03:20:18 (GMT) |
commit | 162c6a637a6a1389b6802a99cbe2781435990d47 (patch) | |
tree | 803a67383f02bec304bf3aab2e37568c082fec17 /Doc/lib/libtraceback.tex | |
parent | 15ad28cf891acde5d37533f4df22a447d94abb5a (diff) | |
download | cpython-162c6a637a6a1389b6802a99cbe2781435990d47.zip cpython-162c6a637a6a1389b6802a99cbe2781435990d47.tar.gz cpython-162c6a637a6a1389b6802a99cbe2781435990d47.tar.bz2 |
Reflect change in traceback format:
"innermost last" --> "most recent call last"
Diffstat (limited to 'Doc/lib/libtraceback.tex')
-rw-r--r-- | Doc/lib/libtraceback.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libtraceback.tex b/Doc/lib/libtraceback.tex index a9a3ffe..6774c2e 100644 --- a/Doc/lib/libtraceback.tex +++ b/Doc/lib/libtraceback.tex @@ -33,7 +33,7 @@ Print exception information and up to \var{limit} stack trace entries from \var{traceback} to \var{file}. 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 +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 format, it prints the line where the syntax error occurred with a |