diff options
author | Ned Deily <nad@acm.org> | 2011-06-28 06:41:53 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-06-28 06:41:53 (GMT) |
commit | 43e1054e38ebd3de91b51531cda8e2fd580c0207 (patch) | |
tree | 36d713b9f71d61c3bb5009f4ed907af08db86dc0 /Doc/library/os.rst | |
parent | 64e59959f21711bc3db36230eccfaa485faf34f9 (diff) | |
download | cpython-43e1054e38ebd3de91b51531cda8e2fd580c0207.zip cpython-43e1054e38ebd3de91b51531cda8e2fd580c0207.tar.gz cpython-43e1054e38ebd3de91b51531cda8e2fd580c0207.tar.bz2 |
Issue #8746: Correct faulty configure checks so that os.chflags() and
os.lchflags() are once again built on systems that support these
functions (*BSD and OS X). Also add new stat file flags for OS X
(UF_HIDDEN and UF_COMPRESSED). Also add additional tests for
os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 7915b22..d70d45a 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1014,6 +1014,8 @@ Files and Directories * :data:`stat.UF_APPEND` * :data:`stat.UF_OPAQUE` * :data:`stat.UF_NOUNLINK` + * :data:`stat.UF_COMPRESSED` + * :data:`stat.UF_HIDDEN` * :data:`stat.SF_ARCHIVED` * :data:`stat.SF_IMMUTABLE` * :data:`stat.SF_APPEND` |