diff options
Diffstat (limited to 'Doc/faq/extending.rst')
-rw-r--r-- | Doc/faq/extending.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst index c932d38..635f2c1 100644 --- a/Doc/faq/extending.rst +++ b/Doc/faq/extending.rst @@ -50,10 +50,10 @@ to learn Python's C API. 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 <http://www.swig.org>`_. `SIP -<http://www.riverbankcomputing.co.uk/software/sip/intro>`__, `CXX +<https://riverbankcomputing.com/software/sip/intro>`__, `CXX <http://cxx.sourceforge.net/>`_ `Boost <http://www.boost.org/libs/python/doc/index.html>`_, or `Weave -<http://docs.scipy.org/doc/scipy-dev/reference/tutorial/weave.html>`_ are also +<https://scipy.github.io/devdocs/tutorial/weave.html>`_ are also alternatives for wrapping C++ libraries. |