diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-09-27 11:08:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 11:08:11 (GMT) |
commit | dd53b79de0ea98af6a11481217a961daef4e9774 (patch) | |
tree | 2cf023dbe74e517577a9ab758e6147d4a91ae095 /Doc/faq/extending.rst | |
parent | adbed2d542a815b8175db965742211856b19b52f (diff) | |
download | cpython-dd53b79de0ea98af6a11481217a961daef4e9774.zip cpython-dd53b79de0ea98af6a11481217a961daef4e9774.tar.gz cpython-dd53b79de0ea98af6a11481217a961daef4e9774.tar.bz2 |
gh-96959: Update more HTTP links (GH-97536)
Use HTTPS for documents which are available by both HTTP and HTTPS
links, but there is no redirection from HTTP to HTTPS or vice versa.
Diffstat (limited to 'Doc/faq/extending.rst')
-rw-r--r-- | Doc/faq/extending.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst index 318e355..0728263 100644 --- a/Doc/faq/extending.rst +++ b/Doc/faq/extending.rst @@ -51,7 +51,7 @@ If you need to interface to some C or C++ library for which no Python extension currently exists, you can try wrapping the library's data types and functions with a tool such as `SWIG <https://www.swig.org>`_. `SIP <https://riverbankcomputing.com/software/sip/intro>`__, `CXX -<http://cxx.sourceforge.net/>`_ `Boost +<https://cxx.sourceforge.net/>`_ `Boost <https://www.boost.org/libs/python/doc/index.html>`_, or `Weave <https://github.com/scipy/weave>`_ are also alternatives for wrapping C++ libraries. |