diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-10 22:22:33 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-10 22:22:33 (GMT) |
commit | 5647c473bc6561d2d1bc0423ac5c1caab2bcb44f (patch) | |
tree | 22dd45c7ab75daadd8115a123c13fc040758e183 /Doc/library/os.rst | |
parent | f2b5673f736be86212ebf185182310bb318740c6 (diff) | |
parent | 30178068d941ba3e42c6345d466576b0ca69d72c (diff) | |
download | cpython-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.rst | 20 |
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. |