diff options
author | Georg Brandl <georg@python.org> | 2007-11-24 13:56:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-24 13:56:09 (GMT) |
commit | b67da6ed2b182d2ef0b4e86e1dd402d27c53422d (patch) | |
tree | 8246321d090c097728e6bab65bd8d7f21b3ded09 /Doc/library/os.rst | |
parent | ce7d10ccc4d04fd96dfd5c0d239ed81357efd3f8 (diff) | |
download | cpython-b67da6ed2b182d2ef0b4e86e1dd402d27c53422d.zip cpython-b67da6ed2b182d2ef0b4e86e1dd402d27c53422d.tar.gz cpython-b67da6ed2b182d2ef0b4e86e1dd402d27c53422d.tar.bz2 |
#1735632: add O_NOATIME constant to os module.
Also document a few other O_ constants that were missing from documentation.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 3843b53..7d12488 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -703,14 +703,7 @@ platforms. For descriptions of their availability and use, consult .. data:: O_BINARY - - Option for the *flag* argument to the :func:`open` function. This can be - bit-wise OR'd together with those listed above. Availability: Windows. - - .. % XXX need to check on the availability of this one. - - -.. data:: O_NOINHERIT + O_NOINHERIT O_SHORT_LIVED O_TEMPORARY O_RANDOM @@ -721,6 +714,15 @@ platforms. For descriptions of their availability and use, consult bit-wise OR'd together. Availability: Windows. +.. data:: O_DIRECT + O_DIRECTORY + O_NOFOLLOW + O_NOATIME + + Options for the *flag* argument to the :func:`open` function. These are + GNU extensions and not present if they are not defined by the C library. + + .. data:: SEEK_SET SEEK_CUR SEEK_END |