[Python-checkins] bpo-31533: fix broken link to OpenSSL docs (#3674)

Christian Heimes webhook-mailer at python.org
Wed Sep 20 14:20:21 EDT 2017


https://github.com/python/cpython/commit/19e4d9346db7fb65845b98a9cb9caacaaac8a81a
commit: 19e4d9346db7fb65845b98a9cb9caacaaac8a81a
branch: master
author: Felipe <felipeochoa at users.noreply.github.com>
committer: Christian Heimes <christian at python.org>
date: 2017-09-20T20:20:18+02:00
summary:

bpo-31533: fix broken link to OpenSSL docs (#3674)

files:
M Doc/library/ssl.rst

diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 1f3e8d5f781..9b3bdd5489d 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -233,7 +233,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://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`_.
+   <https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_.
 
    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://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`_.
+   <https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_.
    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.



More information about the Python-checkins mailing list