Kaydet (Commit) 2828e9db authored tarafından Guido van Rossum's avatar Guido van Rossum

* Doc/libstring.tex (section{Standard Module \sectcode{string}}):

	removed references to {ato{f,i,l},index}_error
üst 710c352d
...@@ -52,34 +52,6 @@ The exceptions are: ...@@ -52,34 +52,6 @@ The exceptions are:
\renewcommand{\indexsubitem}{(exception in module string)} \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: The functions are:
\renewcommand{\indexsubitem}{(in module string)} \renewcommand{\indexsubitem}{(in module string)}
...@@ -121,12 +93,12 @@ Like \code{find} but finds the highest index. ...@@ -121,12 +93,12 @@ Like \code{find} but finds the highest index.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{index}{s\, sub\optional{\, start}} \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. not found.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{rindex}{s\, sub\optional{\, start}} \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. not found.
\end{funcdesc} \end{funcdesc}
......
...@@ -52,34 +52,6 @@ The exceptions are: ...@@ -52,34 +52,6 @@ The exceptions are:
\renewcommand{\indexsubitem}{(exception in module string)} \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: The functions are:
\renewcommand{\indexsubitem}{(in module string)} \renewcommand{\indexsubitem}{(in module string)}
...@@ -121,12 +93,12 @@ Like \code{find} but finds the highest index. ...@@ -121,12 +93,12 @@ Like \code{find} but finds the highest index.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{index}{s\, sub\optional{\, start}} \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. not found.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{rindex}{s\, sub\optional{\, start}} \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. not found.
\end{funcdesc} \end{funcdesc}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment