summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.path.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-06 07:52:55 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-06 07:52:55 (GMT)
commitf6324941f00119363a42609558b7221c230aea13 (patch)
tree4b72d64ddfe6dceaa623d7a68d6592c02762b74a /Doc/library/os.path.rst
parentd2914ce0f703554638ec696d8e4b34f46e476b65 (diff)
downloadcpython-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/os.path.rst')
-rw-r--r--Doc/library/os.path.rst2
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.