summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-05-12 03:51:40 (GMT)
committerFred Drake <fdrake@acm.org>2004-05-12 03:51:40 (GMT)
commit1cd6e4dc38c7f7de3b39d93cb503ee2058662bcd (patch)
treeded65f426487cdb7595fc6d4c7e5eeaf76f2f591 /Lib
parent043fff088162c86f410fa2847e04d68a5213129f (diff)
downloadcpython-1cd6e4dc38c7f7de3b39d93cb503ee2058662bcd.zip
cpython-1cd6e4dc38c7f7de3b39d93cb503ee2058662bcd.tar.gz
cpython-1cd6e4dc38c7f7de3b39d93cb503ee2058662bcd.tar.bz2
fix various descriptions of "ctime"
(closes SF patch #870287)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/posixpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 7ee4911..dcd5a63 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?