summaryrefslogtreecommitdiffstats
path: root/Doc/libstring.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-17 13:16:34 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-17 13:16:34 (GMT)
commit2828e9dbd4899eb28d63ec1ba246800b0b14c694 (patch)
tree6b4260e0c4e12baa08fc3c78e77b7d0baf0a87e2 /Doc/libstring.tex
parent710c352d058856830e7c003bce7cccd4c10024ea (diff)
downloadcpython-2828e9dbd4899eb28d63ec1ba246800b0b14c694.zip
cpython-2828e9dbd4899eb28d63ec1ba246800b0b14c694.tar.gz
cpython-2828e9dbd4899eb28d63ec1ba246800b0b14c694.tar.bz2
* Doc/libstring.tex (section{Standard Module \sectcode{string}}):
removed references to {ato{f,i,l},index}_error
Diffstat (limited to 'Doc/libstring.tex')
-rw-r--r--Doc/libstring.tex32
1 files changed, 2 insertions, 30 deletions
diff --git a/Doc/libstring.tex b/Doc/libstring.tex
index 7d99a36..1c4e90d 100644
--- a/Doc/libstring.tex
+++ b/Doc/libstring.tex
@@ -52,34 +52,6 @@ The exceptions are:
\renewcommand{\indexsubitem}{(exception in module string)}
-\begin{excdesc}{atof_error}
-Exception raised by
-\code{atof}
-when a non-float string argument is detected.
-The exception argument is the offending string.
-\end{excdesc}
-
-\begin{excdesc}{atoi_error}
-Exception raised by
-\code{atoi}
-when a non-integer string argument is detected.
-The exception argument is the offending string.
-\end{excdesc}
-
-\begin{excdesc}{atol_error}
-Exception raised by
-\code{atol}
-when a non-integer string argument is detected.
-The exception argument is the offending string.
-\end{excdesc}
-
-\begin{excdesc}{index_error}
-Exception raised by \code{index} when \var{sub} is not found.
-The exception argument is undefined (it may be a tuple containing the
-offending arguments to \code{index} or it may be the constant string
-\code{'substring not found'}).
-\end{excdesc}
-
The functions are:
\renewcommand{\indexsubitem}{(in module string)}
@@ -121,12 +93,12 @@ Like \code{find} but finds the highest index.
\end{funcdesc}
\begin{funcdesc}{index}{s\, sub\optional{\, start}}
-Like \code{find} but raise \code{index_error} when the substring is
+Like \code{find} but raise \code{ValueError} when the substring is
not found.
\end{funcdesc}
\begin{funcdesc}{rindex}{s\, sub\optional{\, start}}
-Like \code{rfind} but raise \code{index_error} when the substring is
+Like \code{rfind} but raise \code{ValueError} when the substring is
not found.
\end{funcdesc}