summaryrefslogtreecommitdiffstats
path: root/Doc/libexcs.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1997-12-16 14:54:32 (GMT)
committerFred Drake <fdrake@acm.org>1997-12-16 14:54:32 (GMT)
commit8e0799817e5db2215a5a22e24848776a2c915d0a (patch)
treedd174c9113eb1bfe5ce6258690f927ccebbbacbb /Doc/libexcs.tex
parent9d2f7d414d2173ffb5b746e6ba365ab9c607a305 (diff)
downloadcpython-8e0799817e5db2215a5a22e24848776a2c915d0a.zip
cpython-8e0799817e5db2215a5a22e24848776a2c915d0a.tar.gz
cpython-8e0799817e5db2215a5a22e24848776a2c915d0a.tar.bz2
The \indexsubitem definition for the actual exceptions did not actually
change the \indexsubitem value; fixed.
Diffstat (limited to 'Doc/libexcs.tex')
-rw-r--r--Doc/libexcs.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/libexcs.tex b/Doc/libexcs.tex
index 863c7e1..1a6ba40 100644
--- a/Doc/libexcs.tex
+++ b/Doc/libexcs.tex
@@ -85,7 +85,7 @@ index used on a mapping or sequence is invalid: \code{IndexError},
\code{KeyError}.
\end{excdesc}
-\renewcommand{\indexsubitem}{(built-in exception base class)}
+\renewcommand{\indexsubitem}{(built-in exception)}
The following exceptions are the exceptions that are actually raised.
They are class objects, except when the \code{-X} option is used to
@@ -242,7 +242,7 @@ When class exceptions are used, the instance has an attribute
\code{code} which is set to the proposed exit status or error message
(defaulting to \code{None}).
- A call to \code{sys.exit} is translated into an exception so that
+ A call to \code{sys.exit()} is translated into an exception so that
clean-up handlers (\code{finally} clauses of \code{try} statements)
can be executed, and so that a debugger can execute a script without
running the risk of losing control. The \code{os._exit()} function