diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-11-09 20:02:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-09 20:02:30 (GMT) |
commit | 0802fd6c8ee0cacb3ab555dd86e235a5dfab7618 (patch) | |
tree | ad3f9df8c4fe7cfc83246b7d3040d2876d0553a5 /Doc/tools | |
parent | 0c61d028be93c52726972d8d96393cc0cedb1086 (diff) | |
download | cpython-0802fd6c8ee0cacb3ab555dd86e235a5dfab7618.zip cpython-0802fd6c8ee0cacb3ab555dd86e235a5dfab7618.tar.gz cpython-0802fd6c8ee0cacb3ab555dd86e235a5dfab7618.tar.bz2 |
gh-81925: Implement native thread ids for kFreeBSD (#111761)
---------
Co-authored-by: Antoine Pitrou <antoine@python.org>
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/extensions/pyspecific.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tools/extensions/pyspecific.py b/Doc/tools/extensions/pyspecific.py index 11d954a..31c2544 100644 --- a/Doc/tools/extensions/pyspecific.py +++ b/Doc/tools/extensions/pyspecific.py @@ -127,8 +127,8 @@ class Availability(SphinxDirective): # known platform, libc, and threading implementations known_platforms = frozenset({ "AIX", "Android", "BSD", "DragonFlyBSD", "Emscripten", "FreeBSD", - "Linux", "NetBSD", "OpenBSD", "POSIX", "Solaris", "Unix", "VxWorks", - "WASI", "Windows", "macOS", + "GNU/kFreeBSD", "Linux", "NetBSD", "OpenBSD", "POSIX", "Solaris", + "Unix", "VxWorks", "WASI", "Windows", "macOS", # libc "BSD libc", "glibc", "musl", # POSIX platforms with pthreads |