fix various descriptions of "ctime"

(closes SF patch #870287)
This commit is contained in:
Fred Drake 2004-05-12 03:51:40 +00:00
parent 043fff0881
commit 1cd6e4dc38
3 changed files with 7 additions and 3 deletions

View file

@ -146,7 +146,7 @@ def getatime(filename):
return os.stat(filename).st_atime
def getctime(filename):
"""Return the creation time of a file, reported by os.stat()."""
"""Return the metadata change time of a file, reported by os.stat()."""
return os.stat(filename).st_ctime
# Is a path a symbolic link?