[Python-checkins] python/dist/src/Doc/lib libos.tex,1.74.2.1.2.5,1.74.2.1.2.6

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 07 Aug 2002 08:49:47 -0700


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

Modified Files:
      Tag: release22-maint
	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.74.2.1.2.5
retrieving revision 1.74.2.1.2.6
diff -C2 -d -r1.74.2.1.2.5 -r1.74.2.1.2.6
*** libos.tex	18 Jun 2002 20:31:23 -0000	1.74.2.1.2.5
--- libos.tex	7 Aug 2002 15:49:45 -0000	1.74.2.1.2.6
***************
*** 391,394 ****
--- 391,400 ----
  \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.
***************
*** 418,421 ****
--- 424,432 ----
  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}