diff options
author | David Carlier <dcarlier@afilias.info> | 2019-06-12 15:37:56 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-06-12 15:37:56 (GMT) |
commit | 5287022eeeb3c017d49fc8580b52e18377bf23f3 (patch) | |
tree | 74a6058866de460894474587985c05add709eecc /Doc | |
parent | 32dda263e4e8c8e0fadc2bb29b9856e2f177dde9 (diff) | |
download | cpython-5287022eeeb3c017d49fc8580b52e18377bf23f3.zip cpython-5287022eeeb3c017d49fc8580b52e18377bf23f3.tar.gz cpython-5287022eeeb3c017d49fc8580b52e18377bf23f3.tar.bz2 |
bpo-37160: Thread native ID NetBSD support (GH-13835)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/_thread.rst | 2 | ||||
-rw-r--r-- | Doc/library/threading.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/_thread.rst b/Doc/library/_thread.rst index 26568dc..5b4fcde 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, OpenBSD. + .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD, NetBSD. .. versionadded:: 3.8 diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 7fb9ac9..b4f4814 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, OpenBSD. + .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD, NetBSD. .. versionadded:: 3.8 |