[Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex,1.28,1.29

Fred Drake python-dev@python.org
Mon, 17 Apr 2000 13:42:03 -0400


Update of /projects/cvsroot/python/dist/src/Doc/lib
In directory seahag.cnri.reston.va.us:/home/fdrake/projects/python/Doc/lib

Modified Files:
	libexcs.tex 
Log Message:

Added documentation for WindowsError; omission noted by Michal Bozon
<bozon@natur.cuni.cz>.

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


Index: libexcs.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/libexcs.tex,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** libexcs.tex	2000/04/11 19:45:47	1.28
--- libexcs.tex	2000/04/17 17:42:00	1.29
***************
*** 315,318 ****
--- 315,328 ----
  \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