]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clarify docs for os.path.getctime on Unix: it is the inode (metadata) change time
authorGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 07:52:55 +0000 (09:52 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 07:52:55 +0000 (09:52 +0200)
Doc/library/os.path.rst

index 1d46bf2b72dd9e694aaf76d6dd74764e88227e6c..206e7acf1079b616466827b0041e0ae4ce9e49b2 100644 (file)
@@ -150,7 +150,7 @@ the :mod:`glob` module.)
 .. function:: getctime(path)
 
    Return the system's ctime which, on some systems (like Unix) is the time of the
-   last change, and, on others (like Windows), is the creation time for *path*.
+   last metadata change, and, on others (like Windows), is the creation time for *path*.
    The return value is a number giving the number of seconds since the epoch (see
    the  :mod:`time` module).  Raise :exc:`OSError` if the file does not exist or
    is inaccessible.