mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Move \versionadded macros to end of descriptions.
This commit is contained in:
parent
09da65ef2f
commit
d0bceeeb59
1 changed files with 3 additions and 4 deletions
|
@ -94,7 +94,6 @@ index used on a mapping or sequence is invalid: \exception{IndexError},
|
||||||
\end{excdesc}
|
\end{excdesc}
|
||||||
|
|
||||||
\begin{excdesc}{EnvironmentError}
|
\begin{excdesc}{EnvironmentError}
|
||||||
\versionadded{1.5.2}
|
|
||||||
The base class for exceptions that
|
The base class for exceptions that
|
||||||
can occur outside the Python system: \exception{IOError},
|
can occur outside the Python system: \exception{IOError},
|
||||||
\exception{OSError}. When exceptions of this type are created with a
|
\exception{OSError}. When exceptions of this type are created with a
|
||||||
|
@ -103,6 +102,7 @@ attribute (it is assumed to be an error number), and the second item
|
||||||
is available on the \member{strerror} attribute (it is usually the
|
is available on the \member{strerror} attribute (it is usually the
|
||||||
associated error message). The tuple itself is also available on the
|
associated error message). The tuple itself is also available on the
|
||||||
\member{args} attribute.
|
\member{args} attribute.
|
||||||
|
\versionadded{1.5.2}
|
||||||
|
|
||||||
When an \exception{EnvironmentError} exception is instantiated with a
|
When an \exception{EnvironmentError} exception is instantiated with a
|
||||||
3-tuple, the first two items are available as above, while the third
|
3-tuple, the first two items are available as above, while the third
|
||||||
|
@ -154,7 +154,6 @@ Raised when an \keyword{assert} statement fails.
|
||||||
\end{excdesc}
|
\end{excdesc}
|
||||||
|
|
||||||
\begin{excdesc}{IOError}
|
\begin{excdesc}{IOError}
|
||||||
\versionchanged{1.5.2}
|
|
||||||
% XXXJH xrefs here
|
% XXXJH xrefs here
|
||||||
Raised when an I/O operation (such as a \keyword{print} statement,
|
Raised when an I/O operation (such as a \keyword{print} statement,
|
||||||
the built-in \function{open()} function or a method of a file
|
the built-in \function{open()} function or a method of a file
|
||||||
|
@ -214,19 +213,19 @@ Raised when an \keyword{assert} statement fails.
|
||||||
\end{excdesc}
|
\end{excdesc}
|
||||||
|
|
||||||
\begin{excdesc}{NotImplementedError}
|
\begin{excdesc}{NotImplementedError}
|
||||||
\versionadded{1.5.2}
|
|
||||||
This exception is derived from \exception{RuntimeError}. In user
|
This exception is derived from \exception{RuntimeError}. In user
|
||||||
defined base classes, abstract methods should raise this exception
|
defined base classes, abstract methods should raise this exception
|
||||||
when they require derived classes to override the method.
|
when they require derived classes to override the method.
|
||||||
|
\versionadded{1.5.2}
|
||||||
\end{excdesc}
|
\end{excdesc}
|
||||||
|
|
||||||
\begin{excdesc}{OSError}
|
\begin{excdesc}{OSError}
|
||||||
\versionadded{1.5.2}
|
|
||||||
%xref for os module
|
%xref for os module
|
||||||
This class is derived from \exception{EnvironmentError} and is used
|
This class is derived from \exception{EnvironmentError} and is used
|
||||||
primarily as the \module{os} module's \code{os.error} exception.
|
primarily as the \module{os} module's \code{os.error} exception.
|
||||||
See \exception{EnvironmentError} above for a description of the
|
See \exception{EnvironmentError} above for a description of the
|
||||||
possible associated values.
|
possible associated values.
|
||||||
|
\versionadded{1.5.2}
|
||||||
\end{excdesc}
|
\end{excdesc}
|
||||||
|
|
||||||
\begin{excdesc}{OverflowError}
|
\begin{excdesc}{OverflowError}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue