[Python-checkins] python/dist/src/Doc/lib libos.tex, 1.134, 1.135 libstat.tex, 1.23, 1.24

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue May 11 23:51:43 EDT 2004


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

Modified Files:
	libos.tex libstat.tex 
Log Message:
fix various descriptions of "ctime"
(closes SF patch #870287)


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.134
retrieving revision 1.135
diff -C2 -d -r1.134 -r1.135
*** libos.tex	16 Apr 2004 15:20:01 -0000	1.134
--- libos.tex	12 May 2004 03:51:40 -0000	1.135
***************
*** 910,914 ****
  \member{st_mtime} (time of most recent content modification),
  \member{st_ctime}
! (time of most recent content modification or metadata change).
  
  \versionchanged [If \function{stat_float_times} returns true, the time
--- 910,915 ----
  \member{st_mtime} (time of most recent content modification),
  \member{st_ctime}
! (platform dependent; time of most recent metadata change on \UNIX, or
! the time of creation on Windows).
  
  \versionchanged [If \function{stat_float_times} returns true, the time

Index: libstat.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstat.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** libstat.tex	19 Jun 2003 18:10:37 -0000	1.23
--- libstat.tex	12 May 2004 03:51:40 -0000	1.24
***************
*** 111,115 ****
  
  \begin{datadesc}{ST_CTIME}
! Time of last status change (see manual pages for details).
  \end{datadesc}
  
--- 111,118 ----
  
  \begin{datadesc}{ST_CTIME}
! The ``ctime'' as reported by the operating system.  On some systems
! (like \UNIX) is the time of the last metadata change, and, on others
! (like Windows), is the creation time (see platform documentation for
! details).
  \end{datadesc}
  




More information about the Python-checkins mailing list