summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-04-05 12:51:45 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-04-05 12:51:45 (GMT)
commit425aa2e11b71e9ed4f854a6e4312da0e4bd45411 (patch)
tree6032c779795f6ef148f8a3a6192c702491b5c48c /Doc/faq
parent891cd8341322c8bc99584de4b9177d990f2848e2 (diff)
downloadcpython-425aa2e11b71e9ed4f854a6e4312da0e4bd45411.zip
cpython-425aa2e11b71e9ed4f854a6e4312da0e4bd45411.tar.gz
cpython-425aa2e11b71e9ed4f854a6e4312da0e4bd45411.tar.bz2
Fix some broken URLs.
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/extending.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
index 3f3c8b1..5c716fe 100644
--- a/Doc/faq/extending.rst
+++ b/Doc/faq/extending.rst
@@ -51,7 +51,7 @@ with a tool such as `SWIG <http://www.swig.org>`_. `SIP
<http://www.riverbankcomputing.co.uk/software/sip/>`__, `CXX
<http://cxx.sourceforge.net/>`_ `Boost
<http://www.boost.org/libs/python/doc/index.html>`_, or `Weave
-<http://www.scipy.org/site_content/weave>`_ are also alternatives for wrapping
+<http://www.scipy.org/Weave>`_ are also alternatives for wrapping
C++ libraries.
@@ -198,10 +198,10 @@ whole lot of difference between C and C++ -- so the strategy of building a new
Python type around a C structure (pointer) type will also work for C++ objects.
For C++ libraries, you can look at `SIP
-<http://www.riverbankcomputing.co.uk/sip/>`_, `CXX
+<http://www.riverbankcomputing.co.uk/software/sip/>`_, `CXX
<http://cxx.sourceforge.net/>`_, `Boost
<http://www.boost.org/libs/python/doc/index.html>`_, `Weave
-<http://www.scipy.org/site_content/weave>`_ or `SWIG <http://www.swig.org>`_
+<http://www.scipy.org/Weave>`_ or `SWIG <http://www.swig.org>`_
I added a module using the Setup file and the make fails; why?