Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Doc/library/os.rst
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ process and user.
Return a tuple (ruid, euid, suid) denoting the current process's
real, effective, and saved user ids.

.. availability:: Unix, not WASI.
.. availability:: Unix, not WASI, not macOS.

.. versionadded:: 3.2

Expand All @@ -551,7 +551,7 @@ process and user.
Return a tuple (rgid, egid, sgid) denoting the current process's
real, effective, and saved group ids.

.. availability:: Unix, not WASI.
.. availability:: Unix, not WASI, not macOS.

.. versionadded:: 3.2

Expand Down Expand Up @@ -725,7 +725,7 @@ process and user.

Set the current process's real, effective, and saved group ids.

.. availability:: Unix, not WASI, not Android.
.. availability:: Unix, not WASI, not Android, not macOS.

.. versionadded:: 3.2

Expand All @@ -734,7 +734,7 @@ process and user.

Set the current process's real, effective, and saved user ids.

.. availability:: Unix, not WASI, not Android.
.. availability:: Unix, not WASI, not Android, not macOS.

.. versionadded:: 3.2

Expand Down Expand Up @@ -1426,7 +1426,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
Return a pair of file descriptors ``(r, w)`` usable for reading and writing,
respectively.

.. availability:: Unix, not WASI.
.. availability:: Unix, not WASI, not macOS.

.. versionadded:: 3.3

Expand All @@ -1436,7 +1436,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
Ensures that enough disk space is allocated for the file specified by *fd*
starting from *offset* and continuing for *len* bytes.

.. availability:: Unix.
.. availability:: Unix, not macOS.

.. versionadded:: 3.3

Expand All @@ -1451,7 +1451,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
:data:`POSIX_FADV_RANDOM`, :data:`POSIX_FADV_NOREUSE`,
:data:`POSIX_FADV_WILLNEED` or :data:`POSIX_FADV_DONTNEED`.

.. availability:: Unix.
.. availability:: Unix, not macOS.

.. versionadded:: 3.3

Expand Down
Loading