diff options
author | Fred Drake <fdrake@acm.org> | 2004-05-12 03:51:40 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-05-12 03:51:40 +0000 |
commit | 1cd6e4dc38c7f7de3b39d93cb503ee2058662bcd (patch) | |
tree | ded65f426487cdb7595fc6d4c7e5eeaf76f2f591 /Lib/posixpath.py | |
parent | 043fff088162c86f410fa2847e04d68a5213129f (diff) | |
download | cpython-git-1cd6e4dc38c7f7de3b39d93cb503ee2058662bcd.tar.gz |
fix various descriptions of "ctime"
(closes SF patch #870287)
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 7ee4911d31..dcd5a638c0 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -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? |