[Python-checkins] python/dist/src/Doc/lib libos.tex,1.153,1.154

montanaro@users.sourceforge.net montanaro at users.sourceforge.net
Mon May 16 04:42:23 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27235/Doc/lib

Modified Files:
	libos.tex 
Log Message:
Add O_SHLOCK & O_EXLOCK.  Closes patch #1103951.


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -d -r1.153 -r1.154
--- libos.tex	13 Feb 2005 22:50:03 -0000	1.153
+++ libos.tex	16 May 2005 02:42:21 -0000	1.154
@@ -594,7 +594,9 @@
 
 
 The following data items are available for use in constructing the
-\var{flags} parameter to the \function{open()} function.
+\var{flags} parameter to the \function{open()} function.  Some items will
+not be available on all platforms.  For descriptions of their availability
+and use, consult \manpage{open}{2}.
 
 \begin{datadesc}{O_RDONLY}
 \dataline{O_WRONLY}
@@ -614,6 +616,8 @@
 \dataline{O_NDELAY}
 \dataline{O_NONBLOCK}
 \dataline{O_NOCTTY}
+\dataline{O_SHLOCK}
+\dataline{O_EXLOCK}
 More options for the \var{flag} argument to the \function{open()} function.
 Availability: Macintosh, \UNIX.
 \end{datadesc}



More information about the Python-checkins mailing list