diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-19 22:46:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-19 22:46:21 (GMT) |
commit | e3455c026afdf5d4448aefde44f7530ea456a9e0 (patch) | |
tree | 6ab632bd2d79284c67a3f3c1eb4f3abf70d007e4 /Doc/library/os.rst | |
parent | 65651ea313b63e431a55c0cd191784ebf3ea9c38 (diff) | |
download | cpython-e3455c026afdf5d4448aefde44f7530ea456a9e0.zip cpython-e3455c026afdf5d4448aefde44f7530ea456a9e0.tar.gz cpython-e3455c026afdf5d4448aefde44f7530ea456a9e0.tar.bz2 |
Mention that os.O_CLOEXEC was added to Python 3.3
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 6adfdb1..b2a16d9 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1369,6 +1369,8 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window These constants are only available on Unix. + .. versionchanged:: 3.3 + Add :data:`O_CLOEXEC` constant. .. data:: O_BINARY O_NOINHERIT |