summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-08-04 09:19:44 (GMT)
committerGitHub <noreply@github.com>2022-08-04 09:19:44 (GMT)
commit54d4b4d992566909182e843f1798534c1853b386 (patch)
tree12b2ae76146f3ef70f32e12bcca3eb9531e1d1b0 /Doc/reference
parentc5916a034ab573aaf5bf124e53d987de5cc6d102 (diff)
downloadcpython-54d4b4d992566909182e843f1798534c1853b386.zip
cpython-54d4b4d992566909182e843f1798534c1853b386.tar.gz
cpython-54d4b4d992566909182e843f1798534c1853b386.tar.bz2
[3.10] gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS (GH-95527) (GH-95644)
If an HTTP link is redirected to a same looking HTTPS link, the latter can be used directly without changes in readability and behavior. It protects from a men-in-the-middle attack. This change does not affect Python examples.. (cherry picked from commit f79547a429d5c90af83a0da821e082cba20d4712) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/introduction.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/introduction.rst b/Doc/reference/introduction.rst
index 72e874e..914a115 100644
--- a/Doc/reference/introduction.rst
+++ b/Doc/reference/introduction.rst
@@ -54,7 +54,7 @@ Jython
Python implemented in Java. This implementation can be used as a scripting
language for Java applications, or can be used to create applications using the
Java class libraries. It is also often used to create tests for Java libraries.
- More information can be found at `the Jython website <http://www.jython.org/>`_.
+ More information can be found at `the Jython website <https://www.jython.org/>`_.
Python for .NET
This implementation actually uses the CPython implementation, but is a managed
@@ -66,7 +66,7 @@ IronPython
An alternate Python for .NET. Unlike Python.NET, this is a complete Python
implementation that generates IL, and compiles Python code directly to .NET
assemblies. It was created by Jim Hugunin, the original creator of Jython. For
- more information, see `the IronPython website <http://ironpython.net/>`_.
+ more information, see `the IronPython website <https://ironpython.net/>`_.
PyPy
An implementation of Python written completely in Python. It supports several
@@ -74,7 +74,7 @@ PyPy
and a Just in Time compiler. One of the goals of the project is to encourage
experimentation with the language itself by making it easier to modify the
interpreter (since it is written in Python). Additional information is
- available on `the PyPy project's home page <http://pypy.org/>`_.
+ available on `the PyPy project's home page <https://pypy.org/>`_.
Each of these implementations varies in some way from the language as documented
in this manual, or introduces specific information beyond what's covered in the