diff options
author | Christian Heimes <christian@cheimes.de> | 2013-08-16 12:35:09 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-08-16 12:35:09 (GMT) |
commit | 177b3f9982732bfbe7051b9d761882a7a744ee66 (patch) | |
tree | f464e8587ec9aa28130ae48ef6cfdcf2950d6ac6 /Doc | |
parent | 0db895e752fd2c1d71636e0630f423c1795f1bd1 (diff) | |
download | cpython-177b3f9982732bfbe7051b9d761882a7a744ee66.zip cpython-177b3f9982732bfbe7051b9d761882a7a744ee66.tar.gz cpython-177b3f9982732bfbe7051b9d761882a7a744ee66.tar.bz2 |
Issue #18673: Add O_TMPFILE to os module. O_TMPFILE requires Linux kernel
3.11 or newer. It's only defined on system with 3.11 uapi headers, too.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 5d8ecfb..cfcb062 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -919,6 +919,7 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window O_NOFOLLOW O_NOATIME O_PATH + O_TMPFILE These constants are GNU extensions and not present if they are not defined by the C library. |