summaryrefslogtreecommitdiff
path: root/Doc/library/os.path.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-10-13 20:12:43 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2013-10-13 20:12:43 +0300
commitdab8354920be8b2c88b8fd390ecb3345ee155d82 (patch)
treeed50c8af4494a4d1248382514e5e0e08ec1badc1 /Doc/library/os.path.rst
parent5e1c053f0c024d53a8618937d6cfbc612d253bdd (diff)
downloadcpython-git-dab8354920be8b2c88b8fd390ecb3345ee155d82.tar.gz
Issue #19207: Improved cross-references in the os, os.path, and posix modules
documentation.
Diffstat (limited to 'Doc/library/os.path.rst')
-rw-r--r--Doc/library/os.path.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index 206e7acf10..36f2d14b0a 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -273,9 +273,9 @@ the :mod:`glob` module.)
.. function:: samestat(stat1, stat2)
Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same file.
- These structures may have been returned by :func:`fstat`, :func:`lstat`, or
- :func:`stat`. This function implements the underlying comparison used by
- :func:`samefile` and :func:`sameopenfile`.
+ These structures may have been returned by :func:`os.fstat`,
+ :func:`os.lstat`, or :func:`os.stat`. This function implements the
+ underlying comparison used by :func:`samefile` and :func:`sameopenfile`.
Availability: Unix.