]> granicus.if.org Git - python/commitdiff
Added documentation for WindowsError; omission noted by Michal Bozon
authorFred Drake <fdrake@acm.org>
Mon, 17 Apr 2000 17:42:00 +0000 (17:42 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 17 Apr 2000 17:42:00 +0000 (17:42 +0000)
<bozon@natur.cuni.cz>.

(Mark Hammond, other Python/Windows cognoscenti: please check this!)

Doc/lib/libexcs.tex

index fd1d21aceea2ce23f347a3013b8d340a057cac8d..4d5ab853f52a81dbc05b0d69a7cc70abe9001146 100644 (file)
@@ -314,6 +314,16 @@ For class exceptions, \function{str()} returns only the message.
   \exception{IndexError}.
 \end{excdesc}
 
+\begin{excdesc}{WindowsError}
+  Raised when a Windows-specific error occurs or when the error number
+  does not correspond to an \cdata{errno} value.  The
+  \member{errno} and \member{strerror} values are created from the
+  return values of the \cfunction{GetLastError()} and
+  \cfunction{FormatMessage()} functions from the Windows Platform API.
+  This is a subclass of \exception{OSError}.
+\versionadded{1.6}
+\end{excdesc}
+
 \begin{excdesc}{ZeroDivisionError}
   Raised when the second argument of a division or modulo operation is
   zero.  The associated value is a string indicating the type of the