From: Georg Brandl Date: Sun, 6 Oct 2013 07:52:55 +0000 (+0200) Subject: Clarify docs for os.path.getctime on Unix: it is the inode (metadata) change time X-Git-Tag: v2.7.6rc1~100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc801844c1fa9aaaada0b8c38791c9160c5a8057;p=python Clarify docs for os.path.getctime on Unix: it is the inode (metadata) change time --- diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index c84aaf29e1..e9b98132e8 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -147,7 +147,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:`os.error` if the file does not exist or is inaccessible.