Skip to content

Commit c1ae0f6

Browse files
picnixzAA-Turner
andauthored
Define SSL backends separately
Co-authored-by: Adam Turner <[email protected]>
1 parent df4f93b commit c1ae0f6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Doc/tools/extensions/availability.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,17 @@
4242
"glibc",
4343
"musl",
4444
})
45-
_EXTRAS = frozenset({
45+
_THREADING = frozenset({
4646
# POSIX platforms with pthreads
4747
"pthreads",
48-
# SSL backends
48+
})
49+
_SSL_BACKENDS = frozenset({
4950
"OpenSSL",
5051
"AWS-LC",
5152
"LibreSSL",
5253
"BoringSSL",
5354
})
54-
KNOWN_PLATFORMS = _PLATFORMS | _LIBC | _EXTRAS
55+
KNOWN_PLATFORMS = _PLATFORMS | _LIBC | _THREADING | _SSL_BACKENDS
5556

5657

5758
class Availability(SphinxDirective):

0 commit comments

Comments
 (0)