diff options
author | Marcin Niemira <marcin@niemira.net> | 2018-07-07 22:24:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-07-07 22:24:20 (GMT) |
commit | 9c5ba097485c8c643b670acd4026f4382bc92f4b (patch) | |
tree | 435891750d772af1e78c643999a522e27e450b50 /Doc | |
parent | 9b50a7f29b761920c04d8c3435d216145da15311 (diff) | |
download | cpython-9c5ba097485c8c643b670acd4026f4382bc92f4b.zip cpython-9c5ba097485c8c643b670acd4026f4382bc92f4b.tar.gz cpython-9c5ba097485c8c643b670acd4026f4382bc92f4b.tar.bz2 |
closes bpo-34050: Fix link in SSL docs (GH-8173)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 3964d02..99d1d77 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1607,7 +1607,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. |