summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-10 22:38:50 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-03-10 22:38:50 (GMT)
commitee30a0be35d15146ec78f3859df2d63fbee323b8 (patch)
tree082389731687419a2abdd1b001322997cb229302 /Doc/library/os.rst
parent1aea1dabe527ae35006671c0eb8879042e398088 (diff)
parent5647c473bc6561d2d1bc0423ac5c1caab2bcb44f (diff)
downloadcpython-ee30a0be35d15146ec78f3859df2d63fbee323b8.zip
cpython-ee30a0be35d15146ec78f3859df2d63fbee323b8.tar.gz
cpython-ee30a0be35d15146ec78f3859df2d63fbee323b8.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 692aa9c..2950f7f 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1260,16 +1260,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.