diff options
author | Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com> | 2017-12-06 16:39:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-12-06 16:39:33 (GMT) |
commit | 1b4587a2462fc05a14be87123083322103a1f55b (patch) | |
tree | c89b0a1f6455ad4fbb7daed04576ff450cd5941f /Doc/using | |
parent | 6bf992a1ac6f3f4d0f83ead9c6403a76afdbe6eb (diff) | |
download | cpython-1b4587a2462fc05a14be87123083322103a1f55b.zip cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.gz cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.bz2 |
bpo-25910: Fixes redirection from http to https (#4674)
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/mac.rst | 2 | ||||
-rw-r--r-- | Doc/using/windows.rst | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Doc/using/mac.rst b/Doc/using/mac.rst index 8f1ac3f..b89c987 100644 --- a/Doc/using/mac.rst +++ b/Doc/using/mac.rst @@ -149,7 +149,7 @@ X by Apple, and the latest version can be downloaded and installed from https://www.activestate.com; it can also be built from source. *wxPython* is another popular cross-platform GUI toolkit that runs natively on -Mac OS X. Packages and documentation are available from http://www.wxpython.org. +Mac OS X. Packages and documentation are available from https://www.wxpython.org. *PyQt* is another popular cross-platform GUI toolkit that runs natively on Mac OS X. More information can be found at diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 3d47d7c..cc560d9 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -291,9 +291,9 @@ for detailed information about platforms with pre-compiled installers. by Mark Pilgrim, 2004, ISBN 1-59059-356-1 - `For Windows users <http://python.swaroopch.com/installation.html#installation-on-windows>`_ + `For Windows users <https://python.swaroopch.com/installation.html#installation-on-windows>`_ in "Installing Python" - in "`A Byte of Python <http://python.swaroopch.com/>`_" + in "`A Byte of Python <https://python.swaroopch.com/>`_" by Swaroop C H, 2003 @@ -871,7 +871,7 @@ shipped with PyWin32. It is an embeddable IDE with a built-in debugger. cx_Freeze --------- -`cx_Freeze <http://cx-freeze.sourceforge.net/>`_ is a :mod:`distutils` +`cx_Freeze <https://anthony-tuininga.github.io/cx_Freeze/>`_ is a :mod:`distutils` extension (see :ref:`extending-distutils`) which wraps Python scripts into executable Windows programs (:file:`{*}.exe` files). When you have done this, you can distribute your application without requiring your users to install |