diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-11 14:32:33 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-11 14:32:33 (GMT) |
commit | de886d92336ece3d52ef86c8c13c00e6fd3b1f09 (patch) | |
tree | b2db792e6b9d1081ebf5931a7d36613e88cf4d7e /Doc | |
parent | a9901e86babd1722bc0861ed5c316477f94439aa (diff) | |
download | cpython-de886d92336ece3d52ef86c8c13c00e6fd3b1f09.zip cpython-de886d92336ece3d52ef86c8c13c00e6fd3b1f09.tar.gz cpython-de886d92336ece3d52ef86c8c13c00e6fd3b1f09.tar.bz2 |
Issue #25910: Fixed more links in the docs.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/windows.rst | 4 | ||||
-rw-r--r-- | Doc/whatsnew/2.7.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.2.rst | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 99f4e74..230fd59 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -266,9 +266,9 @@ for detailed information about platforms with pre-compiled installers. by Mark Pilgrim, 2004, ISBN 1-59059-356-1 - `For Windows users <http://www.swaroopch.com/notes/python/#install_windows>`_ + `For Windows users <http://python.swaroopch.com/installation.html#installation-on-windows>`_ in "Installing Python" - in "`A Byte of Python <http://www.swaroopch.com/notes/python/>`_" + in "`A Byte of Python <http://python.swaroopch.com/>`_" by Swaroop C H, 2003 diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index c4322db..c185ffd 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -1530,7 +1530,7 @@ changes, or look through the Subversion logs for all the details. *ciphers* argument that's a string listing the encryption algorithms to be allowed; the format of the string is described `in the OpenSSL documentation - <http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>`__. + <http://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`__. (Added by Antoine Pitrou; :issue:`8322`.) Another change makes the extension load all of OpenSSL's ciphers and diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 4242f22..f4c4799 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1618,7 +1618,7 @@ for secure (encrypted, authenticated) internet connections: * The :func:`ssl.wrap_socket` constructor function now takes a *ciphers* argument. The *ciphers* string lists the allowed encryption algorithms using the format described in the `OpenSSL documentation - <http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>`__. + <http://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`__. * When linked against recent versions of OpenSSL, the :mod:`ssl` module now supports the Server Name Indication extension to the TLS protocol, allowing |