diff options
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? |