From: Vinay Sajip Date: Sun, 11 Sep 2016 14:11:50 +0000 (+0100) Subject: Issue #23105: Updated documentation on open() flag constants. X-Git-Tag: v2.7.13rc1~131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0954ac1b5cbe663b4125c95485146de336b775a1;p=python Issue #23105: Updated documentation on open() flag constants. --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index d9a62dc0af..9caebf13a0 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -883,7 +883,7 @@ or `the MSDN `_ on Window O_EXCL O_TRUNC - These constants are available on Unix and Windows. + The above constants are available on Unix and Windows. .. data:: O_DSYNC @@ -892,10 +892,8 @@ or `the MSDN `_ on Window O_NDELAY O_NONBLOCK O_NOCTTY - O_SHLOCK - O_EXLOCK - These constants are only available on Unix. + The above constants are only available on Unix. .. data:: O_BINARY @@ -906,7 +904,7 @@ or `the MSDN `_ on Window O_SEQUENTIAL O_TEXT - These constants are only available on Windows. + The above constants are only available on Windows. .. data:: O_ASYNC @@ -914,9 +912,11 @@ or `the MSDN `_ on Window O_DIRECTORY O_NOFOLLOW O_NOATIME + O_SHLOCK + O_EXLOCK - These constants are GNU extensions and not present if they are not defined by - the C library. + The above constants are extensions and not present if they are not + defined by the C library. .. _os-file-dir: