diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 17:13:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 17:13:37 (GMT) |
commit | 690a6a95bda2379dda200d6677b664b6e7004929 (patch) | |
tree | 5e52f7bc3a7d6de414f232a8f26e8775ee2c79fa /Doc/library/os.path.rst | |
parent | 10e73babad7cd64192a563b67eaa11f73cd181de (diff) | |
parent | dab8354920be8b2c88b8fd390ecb3345ee155d82 (diff) | |
download | cpython-690a6a95bda2379dda200d6677b664b6e7004929.zip cpython-690a6a95bda2379dda200d6677b664b6e7004929.tar.gz cpython-690a6a95bda2379dda200d6677b664b6e7004929.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 6e1d494..25cae6b 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -271,9 +271,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, Windows. |