mirror of
https://github.com/python/cpython.git
synced 2025-11-26 13:22:51 +00:00
Issue #23105: Updated documentation on open() flag constants.
This commit is contained in:
parent
1c697a56ba
commit
e4946e73c8
1 changed files with 6 additions and 6 deletions
|
|
@ -908,7 +908,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
|
||||||
O_EXCL
|
O_EXCL
|
||||||
O_TRUNC
|
O_TRUNC
|
||||||
|
|
||||||
These constants are available on Unix and Windows.
|
The above constants are available on Unix and Windows.
|
||||||
|
|
||||||
|
|
||||||
.. data:: O_DSYNC
|
.. data:: O_DSYNC
|
||||||
|
|
@ -917,11 +917,9 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
|
||||||
O_NDELAY
|
O_NDELAY
|
||||||
O_NONBLOCK
|
O_NONBLOCK
|
||||||
O_NOCTTY
|
O_NOCTTY
|
||||||
O_SHLOCK
|
|
||||||
O_EXLOCK
|
|
||||||
O_CLOEXEC
|
O_CLOEXEC
|
||||||
|
|
||||||
These constants are only available on Unix.
|
The above constants are only available on Unix.
|
||||||
|
|
||||||
.. versionchanged:: 3.3
|
.. versionchanged:: 3.3
|
||||||
Add :data:`O_CLOEXEC` constant.
|
Add :data:`O_CLOEXEC` constant.
|
||||||
|
|
@ -934,7 +932,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
|
||||||
O_SEQUENTIAL
|
O_SEQUENTIAL
|
||||||
O_TEXT
|
O_TEXT
|
||||||
|
|
||||||
These constants are only available on Windows.
|
The above constants are only available on Windows.
|
||||||
|
|
||||||
|
|
||||||
.. data:: O_ASYNC
|
.. data:: O_ASYNC
|
||||||
|
|
@ -944,8 +942,10 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
|
||||||
O_NOATIME
|
O_NOATIME
|
||||||
O_PATH
|
O_PATH
|
||||||
O_TMPFILE
|
O_TMPFILE
|
||||||
|
O_SHLOCK
|
||||||
|
O_EXLOCK
|
||||||
|
|
||||||
These constants are GNU extensions and not present if they are not defined by
|
The above constants are extensions and not present if they are not defined by
|
||||||
the C library.
|
the C library.
|
||||||
|
|
||||||
.. versionchanged:: 3.4
|
.. versionchanged:: 3.4
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue