diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2011-06-25 10:03:33 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2011-06-25 10:03:33 (GMT) |
commit | 40d9ebe031f522f43e1f2e16e5a6e8cfe282e9e0 (patch) | |
tree | 5b066a4fe54d5ba215f66e0a8637eb62fc75693c /Doc/library/stat.rst | |
parent | fe9230aac6c85c31a5b0f9983599dcc01091b810 (diff) | |
download | cpython-40d9ebe031f522f43e1f2e16e5a6e8cfe282e9e0.zip cpython-40d9ebe031f522f43e1f2e16e5a6e8cfe282e9e0.tar.gz cpython-40d9ebe031f522f43e1f2e16e5a6e8cfe282e9e0.tar.bz2 |
Issue #12228: Fix exchanged flag descriptions in stat.rst. Thanks Sandro Tosi.
Diffstat (limited to 'Doc/library/stat.rst')
-rw-r--r-- | Doc/library/stat.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst index 3419820..e8ed362 100644 --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -304,11 +304,11 @@ The following flags can be used in the *flags* argument of :func:`os.chflags`: The file may only be appended to. -.. data:: UF_OPAQUE +.. data:: UF_NOUNLINK The file may not be renamed or deleted. -.. data:: UF_NOUNLINK +.. data:: UF_OPAQUE The directory is opaque when viewed through a union stack. |