diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 07:52:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 07:52:55 (GMT) |
commit | f6324941f00119363a42609558b7221c230aea13 (patch) | |
tree | 4b72d64ddfe6dceaa623d7a68d6592c02762b74a /Doc/library | |
parent | d2914ce0f703554638ec696d8e4b34f46e476b65 (diff) | |
download | cpython-f6324941f00119363a42609558b7221c230aea13.zip cpython-f6324941f00119363a42609558b7221c230aea13.tar.gz cpython-f6324941f00119363a42609558b7221c230aea13.tar.bz2 |
Clarify docs for os.path.getctime on Unix: it is the inode (metadata) change time
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/os.path.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 1d46bf2..206e7ac 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -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. |