diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-08-04 08:45:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 08:45:03 (GMT) |
commit | d8df7e02071087894e4295e9b299689d8db74973 (patch) | |
tree | b3f8b84c54f6e6db81d0dc1cde60a52d6398772f /Doc/faq/design.rst | |
parent | 390c80d2c44e6983ad541fff23d99625abf8a42d (diff) | |
download | cpython-d8df7e02071087894e4295e9b299689d8db74973.zip cpython-d8df7e02071087894e4295e9b299689d8db74973.tar.gz cpython-d8df7e02071087894e4295e9b299689d8db74973.tar.bz2 |
[3.11] gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS (GH-95527) (GH-95643)
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/faq/design.rst')
-rw-r--r-- | Doc/faq/design.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst index 794b697..9da1d01 100644 --- a/Doc/faq/design.rst +++ b/Doc/faq/design.rst @@ -321,8 +321,8 @@ is exactly the same type of object that a lambda expression yields) is assigned! Can Python be compiled to machine code, C or some other language? ----------------------------------------------------------------- -`Cython <http://cython.org/>`_ compiles a modified version of Python with -optional annotations into C extensions. `Nuitka <http://www.nuitka.net/>`_ is +`Cython <https://cython.org/>`_ compiles a modified version of Python with +optional annotations into C extensions. `Nuitka <https://www.nuitka.net/>`_ is an up-and-coming compiler of Python into C++ code, aiming to support the full Python language. @@ -338,8 +338,8 @@ cycles and deletes the objects involved. The :mod:`gc` module provides functions to perform a garbage collection, obtain debugging statistics, and tune the collector's parameters. -Other implementations (such as `Jython <http://www.jython.org>`_ or -`PyPy <http://www.pypy.org>`_), however, can rely on a different mechanism +Other implementations (such as `Jython <https://www.jython.org>`_ or +`PyPy <https://www.pypy.org>`_), however, can rely on a different mechanism such as a full-blown garbage collector. This difference can cause some subtle porting problems if your Python code depends on the behavior of the reference counting implementation. |