[Python-checkins] python/dist/src/Lib posixpath.py,1.64,1.65

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


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

Modified Files:
	posixpath.py 
Log Message:
fix various descriptions of "ctime"
(closes SF patch #870287)


Index: posixpath.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/posixpath.py,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -d -r1.64 -r1.65
*** posixpath.py	31 Dec 2003 22:44:29 -0000	1.64
--- posixpath.py	12 May 2004 03:51:39 -0000	1.65
***************
*** 147,151 ****
  
  def getctime(filename):
!     """Return the creation time of a file, reported by os.stat()."""
      return os.stat(filename).st_ctime
  
--- 147,151 ----
  
  def getctime(filename):
!     """Return the metadata change time of a file, reported by os.stat()."""
      return os.stat(filename).st_ctime
  




More information about the Python-checkins mailing list