summaryrefslogtreecommitdiffstats
path: root/Doc/tut
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-17 12:13:53 (GMT)
committerGuido van Rossum <guido@python.org>1993-12-17 12:13:53 (GMT)
commit3cbc16d9041fe1fa87356bdacc2f1ad52fb99a89 (patch)
tree75beb159dc2d0d9d19de7ea7352ae1afa48d8b17 /Doc/tut
parent67a5fdbcc2d86cda9ee2efb7a97cb458036d6927 (diff)
downloadcpython-3cbc16d9041fe1fa87356bdacc2f1ad52fb99a89.zip
cpython-3cbc16d9041fe1fa87356bdacc2f1ad52fb99a89.tar.gz
cpython-3cbc16d9041fe1fa87356bdacc2f1ad52fb99a89.tar.bz2
* lib2.tex (sys): updated sys.std{in,out,err} docs. Added
sys.tracebacklimit. * tut.tex (Exceptions): change text printed by traceback. * lib5.tex (audioop): added minmax. * lib5.tex (audioop.getsample): move wandered paragraph back * lib3.tex, partparse.py: undo mucking with \nopagebreak (didn't work). * partparse.py: ignore \nopagebreak command * ref5.tex: added description of lambda forms. * ref7.tex: added reference to lambda forms to section on function definition. * lib1.tex: removed lambda as built-in function (it is now a special form). Also removed feature of filter, map, reduce to turn a string argument into an anonymous function.
Diffstat (limited to 'Doc/tut')
-rw-r--r--Doc/tut/tut.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index 6fb209f..5327488 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -1760,7 +1760,7 @@ however, and result in error messages as shown here:
\bcode\small\begin{verbatim}
>>> 10 * (1/0)
-Stack backtrace (innermost last):
+Traceback (innermost last):
File "<stdin>", line 1
ZeroDivisionError: integer division or modulo
>>> 4 + foo*3