summaryrefslogtreecommitdiffstats
path: root/Doc/extending
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/extending
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/extending')
-rw-r--r--Doc/extending/index.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/extending/index.rst b/Doc/extending/index.rst
index 0994e3e..01b4df6 100644
--- a/Doc/extending/index.rst
+++ b/Doc/extending/index.rst
@@ -27,8 +27,8 @@ Recommended third party tools
This guide only covers the basic tools for creating extensions provided
as part of this version of CPython. Third party tools like
-`Cython <http://cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_,
-`SWIG <http://www.swig.org>`_ and `Numba <https://numba.pydata.org/>`_
+`Cython <https://cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_,
+`SWIG <https://www.swig.org>`_ and `Numba <https://numba.pydata.org/>`_
offer both simpler and more sophisticated approaches to creating C and C++
extensions for Python.