Skip to content

Commit 4ec7d8c

Browse files
mm-matthiasestyxx
authored andcommitted
pythongh-118596: Add thread-safety clarifications to the SSLContext documentation (python#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.
1 parent bd15d15 commit 4ec7d8c

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
@@ -1472,6 +1472,19 @@ to speed up repeated connections from the same clients.
14721472
:data:`PROTOCOL_TLS`, :data:`PROTOCOL_TLS_CLIENT`, and
14731473
:data:`PROTOCOL_TLS_SERVER` use TLS 1.2 as minimum TLS version.
14741474

1475+
.. note::
1476+
1477+
:class:`SSLContext` only supports limited mutation once it has been used
1478+
by a connection. Adding new certificates to the internal trust store is
1479+
allowed, but changing ciphers, verification settings, or mTLS
1480+
certificates may result in surprising behavior.
1481+
1482+
.. note::
1483+
1484+
:class:`SSLContext` is designed to be shared and used by multiple
1485+
connections.
1486+
Thus, it is thread-safe as long as it is not reconfigured after being
1487+
used by a connection.
14751488

14761489
:class:`SSLContext` objects have the following methods and attributes:
14771490

0 commit comments

Comments
 (0)