diff options
author | Michael Felt <aixtools@users.noreply.github.com> | 2019-06-13 22:34:46 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-13 22:34:46 (GMT) |
commit | d0eeb936d8daf05d7d89f6935e3f4c0dee49c5be (patch) | |
tree | 2f49b4e053b4e5ccc2c76e7f0cd85bbdea9d284a /Doc/library | |
parent | 838f26402de82640698c38ea9d2be65c6cf780d6 (diff) | |
download | cpython-d0eeb936d8daf05d7d89f6935e3f4c0dee49c5be.zip cpython-d0eeb936d8daf05d7d89f6935e3f4c0dee49c5be.tar.gz cpython-d0eeb936d8daf05d7d89f6935e3f4c0dee49c5be.tar.bz2 |
bpo-37077: Add native thread ID (TID) for AIX (GH-13624)
This is the followup for issue36084
https://bugs.python.org/issue37077
Diffstat (limited to 'Doc/library')
-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 5b4fcde..bd653ab 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, NetBSD. + .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD, NetBSD, AIX. .. versionadded:: 3.8 diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index b4f4814..2907b65 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, NetBSD. + .. availability:: Windows, FreeBSD, Linux, macOS, OpenBSD, NetBSD, AIX. .. versionadded:: 3.8 |