summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-09-24 11:38:53 (GMT)
committerGitHub <noreply@github.com>2022-09-24 11:38:53 (GMT)
commitdb39050396a104c73d0da473a2f00a62f9dfdfaa (patch)
tree2dfe5638f680aa797f47bd73f40bada3c49e489e /Doc/whatsnew
parentf00383ec9bb9452fd9d5f5003f123e68fc4a71d8 (diff)
downloadcpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.zip
cpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.tar.gz
cpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.tar.bz2
gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/2.6.rst6
-rw-r--r--Doc/whatsnew/3.1.rst2
2 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst
index 3d0d187..5a3c103 100644
--- a/Doc/whatsnew/2.6.rst
+++ b/Doc/whatsnew/2.6.rst
@@ -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`::
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst
index 6ce6358..fba8816 100644
--- a/Doc/whatsnew/3.1.rst
+++ b/Doc/whatsnew/3.1.rst
@@ -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