Reflect change in traceback format:
"innermost last" --> "most recent call last"
diff --git a/Doc/lib/libpdb.tex b/Doc/lib/libpdb.tex
index 8bfcd77..93d39c0 100644
--- a/Doc/lib/libpdb.tex
+++ b/Doc/lib/libpdb.tex
@@ -48,7 +48,7 @@
>>> import pdb
>>> import mymodule
>>> mymodule.test()
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "./mymodule.py", line 4, in test
test2()
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 @@
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
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index 4720fed..1bdeefb 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -470,7 +470,7 @@
\begin{verbatim}
>>> a=1.5+0.5j
>>> float(a)
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: can't convert complex to float; use e.g. abs(z)
>>> a.real
@@ -617,11 +617,11 @@
\begin{verbatim}
>>> word[0] = 'x'
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: object doesn't support item assignment
>>> word[:-1] = 'Splat'
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: object doesn't support slice assignment
\end{verbatim}
@@ -699,7 +699,7 @@
>>> word[-100:]
'HelpA'
>>> word[-10] # error
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1
IndexError: string index out of range
\end{verbatim}
@@ -1432,7 +1432,7 @@
... pass
...
>>> function(0, a=0)
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: keyword parameter redefined
\end{verbatim}
@@ -2852,7 +2852,7 @@
\begin{verbatim}
>>> f.close()
>>> f.read()
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1, in ?
ValueError: I/O operation on closed file
\end{verbatim}
@@ -2950,15 +2950,15 @@
\begin{verbatim}
>>> 10 * (1/0)
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1
ZeroDivisionError: integer division or modulo
>>> 4 + spam*3
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1
NameError: spam
>>> '2' + 2
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1
TypeError: illegal argument type for built-in operation
\end{verbatim}
@@ -3133,7 +3133,7 @@
\begin{verbatim}
>>> raise NameError, 'HiThere'
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1
NameError: HiThere
\end{verbatim}
@@ -3162,7 +3162,7 @@
...
My exception occurred, value: 4
>>> raise MyError, 1
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 1
__main__.MyError: 1
\end{verbatim}
@@ -3187,7 +3187,7 @@
... print 'Goodbye, world!'
...
Goodbye, world!
-Traceback (innermost last):
+Traceback (most recent call last):
File "<stdin>", line 2
KeyboardInterrupt
\end{verbatim}