diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 17:12:43 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 17:12:43 (GMT) |
commit | dab8354920be8b2c88b8fd390ecb3345ee155d82 (patch) | |
tree | ed50c8af4494a4d1248382514e5e0e08ec1badc1 /Doc/library/os.path.rst | |
parent | 5e1c053f0c024d53a8618937d6cfbc612d253bdd (diff) | |
download | cpython-dab8354920be8b2c88b8fd390ecb3345ee155d82.zip cpython-dab8354920be8b2c88b8fd390ecb3345ee155d82.tar.gz cpython-dab8354920be8b2c88b8fd390ecb3345ee155d82.tar.bz2 |
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.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 206e7ac..36f2d14 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. |