summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-10 22:22:33 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-03-10 22:22:33 (GMT)
commit5647c473bc6561d2d1bc0423ac5c1caab2bcb44f (patch)
tree22dd45c7ab75daadd8115a123c13fc040758e183 /Doc/library/os.rst
parentf2b5673f736be86212ebf185182310bb318740c6 (diff)
parent30178068d941ba3e42c6345d466576b0ca69d72c (diff)
downloadcpython-5647c473bc6561d2d1bc0423ac5c1caab2bcb44f.zip
cpython-5647c473bc6561d2d1bc0423ac5c1caab2bcb44f.tar.gz
cpython-5647c473bc6561d2d1bc0423ac5c1caab2bcb44f.tar.bz2
Merge #10999 fix.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r--Doc/library/os.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 35562ca..fe785fc 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -965,16 +965,16 @@ Files and Directories
Set the flags of *path* to the numeric *flags*. *flags* may take a combination
(bitwise OR) of the following values (as defined in the :mod:`stat` module):
- * ``UF_NODUMP``
- * ``UF_IMMUTABLE``
- * ``UF_APPEND``
- * ``UF_OPAQUE``
- * ``UF_NOUNLINK``
- * ``SF_ARCHIVED``
- * ``SF_IMMUTABLE``
- * ``SF_APPEND``
- * ``SF_NOUNLINK``
- * ``SF_SNAPSHOT``
+ * :data:`stat.UF_NODUMP`
+ * :data:`stat.UF_IMMUTABLE`
+ * :data:`stat.UF_APPEND`
+ * :data:`stat.UF_OPAQUE`
+ * :data:`stat.UF_NOUNLINK`
+ * :data:`stat.SF_ARCHIVED`
+ * :data:`stat.SF_IMMUTABLE`
+ * :data:`stat.SF_APPEND`
+ * :data:`stat.SF_NOUNLINK`
+ * :data:`stat.SF_SNAPSHOT`
Availability: Unix.