diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-04-24 04:46:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 04:46:01 (GMT) |
commit | b2fac1afaa7c0d41a263781fcf94d8a92dc31b48 (patch) | |
tree | aa6dcba68f2a3cdc9e8e0e622885715f4f5369cd /Doc/whatsnew | |
parent | 6c681e1a4aa2dbca61be9a26c9257d7d25fa29a7 (diff) | |
download | cpython-b2fac1afaa7c0d41a263781fcf94d8a92dc31b48.zip cpython-b2fac1afaa7c0d41a263781fcf94d8a92dc31b48.tar.gz cpython-b2fac1afaa7c0d41a263781fcf94d8a92dc31b48.tar.bz2 |
bpo-31870: Add a timeout parameter to ssl.get_server_certificate() (GH-22270)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 247749a..78f3c2d 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1062,6 +1062,12 @@ The exception :exc:`socket.timeout` is now an alias of :exc:`TimeoutError`. Added option to create MPTCP sockets with ``IPPROTO_MPTCP`` (Contributed by Rui Cunha in :issue:`43571`.) +ssl +--- + +Add a *timeout* parameter to the :func:`ssl.get_server_certificate` function. +(Contributed by Zackery Spytz in :issue:`31870`.) + sys --- |