gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)

This commit is contained in:
Serhiy Storchaka 2022-09-24 14:38:53 +03:00 committed by GitHub
parent f00383ec9b
commit db39050396
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 63 additions and 63 deletions

View file

@ -217,7 +217,7 @@ the time required to finish the job.
During the 2.6 development cycle, Georg Brandl put a lot of effort
into building a new toolchain for processing the documentation. The
resulting package is called Sphinx, and is available from
http://sphinx-doc.org/.
https://www.sphinx-doc.org/.
Sphinx concentrates on HTML output, producing attractively styled and
modern HTML; printed output is still supported through conversion to
@ -235,7 +235,7 @@ have adopted Sphinx as their documentation tool.
`Documenting Python <https://devguide.python.org/documenting/>`__
Describes how to write for Python's documentation.
`Sphinx <http://sphinx-doc.org/>`__
`Sphinx <https://www.sphinx-doc.org/>`__
Documentation and code for the Sphinx toolchain.
`Docutils <https://docutils.sourceforge.io>`__
@ -1926,7 +1926,7 @@ changes, or look through the Subversion logs for all the details.
the left to six places. (Contributed by Skip Montanaro; :issue:`1158`.)
* The :mod:`decimal` module was updated to version 1.66 of
`the General Decimal Specification <http://speleotrove.com/decimal/decarith.html>`__. New features
`the General Decimal Specification <https://speleotrove.com/decimal/decarith.html>`__. New features
include some methods for some basic mathematical functions such as
:meth:`exp` and :meth:`log10`::

View file

@ -451,7 +451,7 @@ Major performance enhancements have been added:
* The :mod:`json` module now has a C extension to substantially improve
its performance. In addition, the API was modified so that json works
only with :class:`str`, not with :class:`bytes`. That change makes the
module closely match the `JSON specification <http://json.org/>`_
module closely match the `JSON specification <https://json.org/>`_
which is defined in terms of Unicode.
(Contributed by Bob Ippolito and converted to Py3.1 by Antoine Pitrou