diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-10 22:18:33 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-10 22:18:33 (GMT) |
commit | 30178068d941ba3e42c6345d466576b0ca69d72c (patch) | |
tree | 8eab39fd2bad22e75ec6ba40202043b9cd938fce /Doc/library/os.rst | |
parent | c29cd9384a7ef55a6f9d212965b78584843225d9 (diff) | |
download | cpython-30178068d941ba3e42c6345d466576b0ca69d72c.zip cpython-30178068d941ba3e42c6345d466576b0ca69d72c.tar.gz cpython-30178068d941ba3e42c6345d466576b0ca69d72c.tar.bz2 |
#10999: Add missing documentation for chflags constants to stat module docs
Patch by Michal Nowikowski.
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 bacb008..3f6d69d 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -842,16 +842,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. |