diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 09:27:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 09:27:06 (GMT) |
commit | 794e9bf1fe5bd0000f90c1502b16c96eb68a59af (patch) | |
tree | 0fe2b5742d9d244ffac97dc7b4928ee29eefe370 /Doc/faq/extending.rst | |
parent | 9e67d801bdef7c43e6704200770fb9cf2040dc11 (diff) | |
parent | 525d355984e1afa342aa72fc7867a56eea937a61 (diff) | |
download | cpython-794e9bf1fe5bd0000f90c1502b16c96eb68a59af.zip cpython-794e9bf1fe5bd0000f90c1502b16c96eb68a59af.tar.gz cpython-794e9bf1fe5bd0000f90c1502b16c96eb68a59af.tar.bz2 |
merge with 3.4
Diffstat (limited to 'Doc/faq/extending.rst')
-rw-r--r-- | Doc/faq/extending.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst index d196e86..252050ea 100644 --- a/Doc/faq/extending.rst +++ b/Doc/faq/extending.rst @@ -42,7 +42,7 @@ on what you're trying to do. .. XXX make sure these all work `Cython <http://cython.org>`_ and its relative `Pyrex -<http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/>`_ are compilers +<http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/>`_ are compilers that accept a slightly modified form of Python and generate the corresponding C code. Cython and Pyrex make it possible to write an extension without having to learn Python's C API. @@ -53,8 +53,8 @@ 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/Weave>`_ are also alternatives for wrapping -C++ libraries. +<http://docs.scipy.org/doc/scipy-dev/reference/tutorial/weave.html>`_ are also +alternatives for wrapping C++ libraries. How can I execute arbitrary Python statements from C? |