Skip to content

Commit 7abfc92

Browse files
[3.12] gh-118596: Add thread-safety clarifications to the SSLContext documentation (GH-118597) (#120596)
gh-118596: Add thread-safety clarifications to the SSLContext documentation (GH-118597) Add thread-safety clarifications to the SSLContext documentation. Per the issue: This issue has also come up [here](psf/requests#6667) where the matter was clarified by @tiran in [this comment](psf/requests#6667): > `SSLContext` is designed to be shared and used for multiple connections. It is thread safe as long as you don't reconfigure it once it is used by a connection. Adding new certs to the internal trust store is fine, but changing ciphers, verification settings, or mTLS certs can lead to surprising behavior. The problem is unrelated to threads and can even occur in a single-threaded program. (cherry picked from commit 4f59f86) Co-authored-by: mm-matthias <[email protected]>
1 parent c2f0fb9 commit 7abfc92

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Doc/library/ssl.rst

+13
Original file line numberDiff line numberDiff line change
@@ -1428,6 +1428,19 @@ to speed up repeated connections from the same clients.
14281428
:data:`PROTOCOL_TLS`, :data:`PROTOCOL_TLS_CLIENT`, and
14291429
:data:`PROTOCOL_TLS_SERVER` use TLS 1.2 as minimum TLS version.
14301430

1431+
.. note::
1432+
1433+
:class:`SSLContext` only supports limited mutation once it has been used
1434+
by a connection. Adding new certificates to the internal trust store is
1435+
allowed, but changing ciphers, verification settings, or mTLS
1436+
certificates may result in surprising behavior.
1437+
1438+
.. note::
1439+
1440+
:class:`SSLContext` is designed to be shared and used by multiple
1441+
connections.
1442+
Thus, it is thread-safe as long as it is not reconfigured after being
1443+
used by a connection.
14311444

14321445
:class:`SSLContext` objects have the following methods and attributes:
14331446

0 commit comments

Comments
 (0)