[Python-checkins] CVS: python/dist/src/Doc/lib libos.tex,1.75,1.76

Tim Peters tim_one@users.sourceforge.net
Tue, 29 Jan 2002 21:49:48 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv596/python/Doc/lib

Modified Files:
	libos.tex 
Log Message:
Add new constants usable with os.popen() on Windows.
NOTE:  this seems a mess wrt which symbols are available on which
platforms.  I can't fix it, but I didn't add to it <wink>, and
included an XXX comment about names claimed to be available on
Windows that aren't.  If anyone can figure out the whole ugly truth,
I'm sure a better organization will suggest itself.


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.75
retrieving revision 1.76
diff -C2 -d -r1.75 -r1.76
*** libos.tex	2001/12/21 03:58:47	1.75
--- libos.tex	2002/01/30 05:49:46	1.76
***************
*** 532,535 ****
--- 532,536 ----
  These can be bit-wise OR'd together.
  Availability: Macintosh, \UNIX, Windows.
+ % XXX O_NDELAY, O_NONBLOCK, O_DSYNC, O_RSYNC, O_SYNC, O_NOCTTY are not on Windows.
  \end{datadesc}
  
***************
*** 541,544 ****
--- 542,555 ----
  \end{datadesc}
  
+ \begin{datadesc}{O_NOINHERIT}
+ \dataline{O_SHORT_LIVED}
+ \dataline{O_TEMPORARY}
+ \dataline{O_RANDOM}
+ \dataline{O_SEQUENTIAL}
+ \dataline{O_TEXT}
+ Options for the \var{flag} argument to the \function{open()} function.
+ These can be bit-wise OR'd together.
+ Availability: Windows.
+ \end{datadesc}
  
  \subsection{Files and Directories \label{os-file-dir}}