[Python-checkins] r88409 - python/branches/release31-maint/Doc/library/os.rst

georg.brandl python-checkins at python.org
Sat Feb 12 08:32:04 CET 2011


Author: georg.brandl
Date: Sat Feb 12 08:32:02 2011
New Revision: 88409

Log:
Fix markup problems.

Modified:
   python/branches/release31-maint/Doc/library/os.rst

Modified: python/branches/release31-maint/Doc/library/os.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/os.rst	(original)
+++ python/branches/release31-maint/Doc/library/os.rst	Sat Feb 12 08:32:02 2011
@@ -952,7 +952,7 @@
 
 .. 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`.
@@ -1139,11 +1139,11 @@
 
 .. 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,


More information about the Python-checkins mailing list