[Python-checkins] bpo-46604: fix function name in ssl module docstring (GH-31064)

miss-islington webhook-mailer at python.org
Tue May 3 12:33:55 EDT 2022


https://github.com/python/cpython/commit/a23e4722fd51c5829dc747cea2d6cc2cbd17d1a1
commit: a23e4722fd51c5829dc747cea2d6cc2cbd17d1a1
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-05-03T09:33:35-07:00
summary:

bpo-46604: fix function name in ssl module docstring (GH-31064)


The function fetch_server_certificate is replaced by get_server_certificate in the module. I reflected the change in the module docstrings.

Co-authored-by: Jelle Zijlstra <jelle.zijlstra at gmail.com>
(cherry picked from commit feca9bbd1f6489f2b6d2783bfc22fdb96e45b69f)

Co-authored-by: Kossi GLOKPOR <83467320+glk0 at users.noreply.github.com>

files:
M Lib/ssl.py

diff --git a/Lib/ssl.py b/Lib/ssl.py
index 30f4e5934febf..0e3606b835c6a 100644
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -18,9 +18,10 @@
                           seconds past the Epoch (the time values
                           returned from time.time())
 
-  fetch_server_certificate (HOST, PORT) -- fetch the certificate provided
-                          by the server running on HOST at port PORT.  No
-                          validation of the certificate is performed.
+  get_server_certificate (addr, ssl_version, ca_certs, timeout) -- Retrieve the
+                          certificate from the server at the specified
+                          address and return it as a PEM-encoded string
+
 
 Integer constants:
 



More information about the Python-checkins mailing list