diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-07 07:49:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-07 07:49:07 (GMT) |
commit | 6dff0205b724669cc0469dd65a3f7edc5a69e1e7 (patch) | |
tree | b909a98cf8b2d7820f897b89e3114b7b1844f037 /Doc/whatsnew/3.2.rst | |
parent | 64099ea58ea61c8f37c1fd9f673e0ded59600209 (diff) | |
download | cpython-6dff0205b724669cc0469dd65a3f7edc5a69e1e7.zip cpython-6dff0205b724669cc0469dd65a3f7edc5a69e1e7.tar.gz cpython-6dff0205b724669cc0469dd65a3f7edc5a69e1e7.tar.bz2 |
Issue #26736: Used HTTPS for external links in the documentation if possible.
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index f4c4799..aa41b29 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -769,8 +769,8 @@ functools (Contributed by Raymond Hettinger and incorporating design ideas from Jim Baker, Miki Tebeka, and Nick Coghlan; see `recipe 498245 - <http://code.activestate.com/recipes/498245>`_\, `recipe 577479 - <http://code.activestate.com/recipes/577479>`_\, :issue:`10586`, and + <https://code.activestate.com/recipes/498245>`_\, `recipe 577479 + <https://code.activestate.com/recipes/577479>`_\, :issue:`10586`, and :issue:`10593`.) * The :func:`functools.wraps` decorator now adds a :attr:`__wrapped__` attribute @@ -955,7 +955,7 @@ sites do not finish before midnight, the barrier times-out and the ballots are sealed and deposited in a queue for later handling. See `Barrier Synchronization Patterns -<http://parlab.eecs.berkeley.edu/wiki/_media/patterns/paraplop_g1_3.pdf>`_ for +<https://parlab.eecs.berkeley.edu/wiki/_media/patterns/paraplop_g1_3.pdf>`_ for more examples of how barriers can be used in parallel computing. Also, there is a simple but thorough explanation of barriers in `The Little Book of Semaphores <http://greenteapress.com/semaphores/downey08semaphores.pdf>`_, *section 3.6*. @@ -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>`__. + <https://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 @@ -2559,7 +2559,7 @@ Also, there were a number of updates to the Mac OS X build, see :source:`Mac/BuildScript/README.txt` for details. For users running a 32/64-bit build, there is a known problem with the default Tcl/Tk on Mac OS X 10.6. Accordingly, we recommend installing an updated alternative such as -`ActiveState Tcl/Tk 8.5.9 <http://www.activestate.com/activetcl/downloads>`_\. +`ActiveState Tcl/Tk 8.5.9 <https://www.activestate.com/activetcl/downloads>`_\. See https://www.python.org/download/mac/tcltk/ for additional details. Porting to Python 3.2 |