diff options
author | Georg Brandl <georg@python.org> | 2011-02-12 07:32:17 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-12 07:32:17 +0000 |
commit | ba516cb83eb5fd2fbd680c449c6f8da58818fd28 (patch) | |
tree | 45f7a5b2359d4ee49ec56f871cd75c683299eb8b | |
parent | f9e342321ac1dcd8b3a27171356b9c14948d581e (diff) | |
download | cpython-git-ba516cb83eb5fd2fbd680c449c6f8da58818fd28.tar.gz |
Fix markup problems.
-rw-r--r-- | Doc/library/os.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 8e4c53d0a2..e97cf80914 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1114,7 +1114,7 @@ Files and Directories .. function:: lstat(path) - Perform the equivalent of an :c:func:`lstat` system call on the given path. + Perform the equivalent of an :cfunc:`lstat` system call on the given path. Similar to :func:`~os.stat`, but does not follow symbolic links. On platforms that do not support symbolic links, this is an alias for :func:`~os.stat`. @@ -1315,11 +1315,11 @@ Files and Directories .. function:: stat(path) - Perform the equivalent of a :c:func:`stat` system call on the given path. + Perform the equivalent of a :cfunc:`stat` system call on the given path. (This function follows symlinks; to stat a symlink use :func:`lstat`.) The return value is an object whose attributes correspond to the members - of the :c:type:`stat` structure, namely: + of the :ctype:`stat` structure, namely: * :attr:`st_mode` - protection bits, * :attr:`st_ino` - inode number, |