[Python-checkins] [3.6] closes bpo-34050: Fix link in SSL docs (GH-8173) (GH-8178)

Benjamin Peterson webhook-mailer at python.org
Sat Jul 7 19:03:40 EDT 2018


https://github.com/python/cpython/commit/becb5277670bdb37e8c8471a5a510466eaf9598a
commit: becb5277670bdb37e8c8471a5a510466eaf9598a
branch: 3.6
author: Benjamin Peterson <benjamin at python.org>
committer: GitHub <noreply at github.com>
date: 2018-07-07T16:03:37-07:00
summary:

[3.6] closes bpo-34050: Fix link in SSL docs (GH-8173) (GH-8178)

(cherry picked from commit 9c5ba097485c8c643b670acd4026f4382bc92f4b)

Co-authored-by: Marcin Niemira <marcin at niemira.net>

files:
M Doc/library/ssl.rst
M Misc/ACKS

diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 58689041a38c..25ecfaec2565 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -221,7 +221,7 @@ instead.
 
    The *ciphers* parameter sets the available ciphers for this SSL object.
    It should be a string in the `OpenSSL cipher list format
-   <https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_.
+   <https://www.openssl.org/docs/manmaster/man1/ciphers.html>`_.
 
    The parameter ``do_handshake_on_connect`` specifies whether to do the SSL
    handshake automatically after doing a :meth:`socket.connect`, or whether the
@@ -1465,7 +1465,7 @@ to speed up repeated connections from the same clients.
 
    Set the available ciphers for sockets created with this context.
    It should be a string in the `OpenSSL cipher list format
-   <https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_.
+   <https://www.openssl.org/docs/manmaster/man1/ciphers.html>`_.
    If no cipher can be selected (because compile-time options or other
    configuration forbids use of all the specified ciphers), an
    :class:`SSLError` will be raised.
diff --git a/Misc/ACKS b/Misc/ACKS
index ca578b4a39bb..64a007236b65 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1727,6 +1727,7 @@ Gordon Worley
 Darren Worrall
 Thomas Wouters
 Daniel Wozniak
+Marcin Niemira
 Wei Wu
 Heiko Wundram
 Doug Wyatt



More information about the Python-checkins mailing list