diff options
| author | David Carlier <dcarlier@afilias.info> | 2019-06-03 16:43:33 +0100 |
|---|---|---|
| committer | Victor Stinner <vstinner@redhat.com> | 2019-06-03 17:43:33 +0200 |
| commit | 0b9956e9162d8723c2a30ff316ecc25e54459fb1 (patch) | |
| tree | b266191d989dfeefe00bd5b8b3913bfd398143f5 /Doc | |
| parent | 141da44bb45bc182886303fce92cbbae5631cb4c (diff) | |
| download | cpython-git-0b9956e9162d8723c2a30ff316ecc25e54459fb1.tar.gz | |
bpo-37087: Adding native ID support for OpenBSD (GH-13654)
Diffstat (limited to 'Doc')
| -rw-r--r-- | Doc/library/_thread.rst | 2 | ||||
| -rw-r--r-- | Doc/library/threading.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/_thread.rst b/Doc/library/_thread.rst index 48d36e85c9..26568dcbf8 100644 --- a/Doc/library/_thread.rst +++ b/Doc/library/_thread.rst @@ -106,7 +106,7 @@ This module defines the following constants and functions: Its value may be used to uniquely identify this particular thread system-wide (until the thread terminates, after which the value may be recycled by the OS). - .. availability:: Windows, FreeBSD, Linux, macOS. + .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD. .. versionadded:: 3.8 diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index ffe6d04258..7fb9ac9979 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -82,7 +82,7 @@ This module defines the following functions: Its value may be used to uniquely identify this particular thread system-wide (until the thread terminates, after which the value may be recycled by the OS). - .. availability:: Windows, FreeBSD, Linux, macOS. + .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD. .. versionadded:: 3.8 @@ -355,7 +355,7 @@ since it is impossible to detect the termination of alien threads. system-wide) from the time the thread is created until the thread has been terminated. - .. availability:: Windows, FreeBSD, Linux, macOS. + .. availability:: Require :func:`get_native_id` function. .. versionadded:: 3.8 |
