diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-08-04 10:30:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 10:30:05 (GMT) |
commit | d0d0154443cafb2f0a2cdfb6a1267d80cce8388e (patch) | |
tree | f4602d75ba6e3f6cf18974d32584e07ac099194d /Doc/faq | |
parent | 621b33ce258f3eaf154322c1edf0ead1e4892e36 (diff) | |
download | cpython-d0d0154443cafb2f0a2cdfb6a1267d80cce8388e.zip cpython-d0d0154443cafb2f0a2cdfb6a1267d80cce8388e.tar.gz cpython-d0d0154443cafb2f0a2cdfb6a1267d80cce8388e.tar.bz2 |
gh-91838: Resolve HTTP links which redirect to HTTPS (GH-95642)
It updates links which redirect to HTTPS with different authority or
path.
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/general.rst | 2 | ||||
-rw-r--r-- | Doc/faq/programming.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/general.rst b/Doc/faq/general.rst index bc4130a..510ebb5 100644 --- a/Doc/faq/general.rst +++ b/Doc/faq/general.rst @@ -330,7 +330,7 @@ different companies and organizations. High-profile Python projects include `the Mailman mailing list manager <http://www.list.org>`_ and `the Zope application server -<http://www.zope.org>`_. Several Linux distributions, most notably `Red Hat +<https://www.zope.dev>`_. Several Linux distributions, most notably `Red Hat <https://www.redhat.com>`_, have written part or all of their installer and system administration software in Python. Companies that use Python internally include Google, Yahoo, and Lucasfilm Ltd. diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 5b5c357..6514c00 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -95,7 +95,7 @@ The following packages can help with the creation of console and GUI executables: * `Nuitka <https://nuitka.net/>`_ (Cross-platform) -* `PyInstaller <http://www.pyinstaller.org/>`_ (Cross-platform) +* `PyInstaller <https://pyinstaller.org/>`_ (Cross-platform) * `PyOxidizer <https://pyoxidizer.readthedocs.io/en/stable/>`_ (Cross-platform) * `cx_Freeze <https://marcelotduarte.github.io/cx_Freeze/>`_ (Cross-platform) * `py2app <https://github.com/ronaldoussoren/py2app>`_ (macOS only) |