[Python-checkins] python/dist/src/Doc/lib libos.tex,1.93,1.94

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 07 Aug 2002 08:48:19 -0700


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

Modified Files:
	libos.tex 
Log Message:
Documented os.fsync and os.fdatasync.  Closes SF bug 584695.


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.93
retrieving revision 1.94
diff -C2 -d -r1.93 -r1.94
*** libos.tex	28 Jul 2002 16:33:45 -0000	1.93
--- libos.tex	7 Aug 2002 15:48:17 -0000	1.94
***************
*** 400,403 ****
--- 400,409 ----
  \end{funcdesc}
  
+ \begin{funcdesc}{fdatasync}{fd}
+ Force write of file with filedescriptor \var{fd} to disk.
+ Does not force update of metadata.
+ Availability: \UNIX.
+ \end{funcdesc}
+ 
  \begin{funcdesc}{fpathconf}{fd, name}
  Return system configuration information relevant to an open file.
***************
*** 427,430 ****
--- 433,441 ----
  Return information about the filesystem containing the file associated
  with file descriptor \var{fd}, like \function{statvfs()}.
+ Availability: \UNIX.
+ \end{funcdesc}
+ 
+ \begin{funcdesc}{fsync}{fd}
+ Force write of file with filedescriptor \var{fd} to disk.
  Availability: \UNIX.
  \end{funcdesc}