[Python-checkins] python/dist/src/Doc/lib libposixpath.tex, 1.36.12.1, 1.36.12.2

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Tue Oct 28 19:47:14 EST 2003


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

Modified Files:
      Tag: release23-maint
	libposixpath.tex 
Log Message:
SF bug #827902: ctime is not creation time

New fix for this bug recognizes differing definitions on various systems.



Index: libposixpath.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libposixpath.tex,v
retrieving revision 1.36.12.1
retrieving revision 1.36.12.2
diff -C2 -d -r1.36.12.1 -r1.36.12.2
*** libposixpath.tex	27 Oct 2003 20:03:22 -0000	1.36.12.1
--- libposixpath.tex	29 Oct 2003 00:47:11 -0000	1.36.12.2
***************
*** 85,90 ****
  
  \begin{funcdesc}{getctime}{path}
! Return the time of most recent content modification or metadata change
! for \var{path}.  The return
  value is a number giving the number of seconds since the epoch (see the 
  \refmodule{time} module).  Raise \exception{os.error} if the file does
--- 85,91 ----
  
  \begin{funcdesc}{getctime}{path}
! Return the system's ctime which, on some systems (like \UNIX) is the
! time of the last change, and, on others (like Windows), is the
! creation time for \var{path}.  The return
  value is a number giving the number of seconds since the epoch (see the 
  \refmodule{time} module).  Raise \exception{os.error} if the file does





More information about the Python-checkins mailing list