diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-05 13:25:51 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-05 13:25:51 (GMT) |
commit | 19192dd4022e1ce3978ac9b52a95deef430d46f8 (patch) | |
tree | 2d190fc9a19790724bc2924eb55db8a0992a8b6d /Doc/faq | |
parent | 9de5a41add07f4c7aec750b8b73709deaa95284e (diff) | |
download | cpython-19192dd4022e1ce3978ac9b52a95deef430d46f8.zip cpython-19192dd4022e1ce3978ac9b52a95deef430d46f8.tar.gz cpython-19192dd4022e1ce3978ac9b52a95deef430d46f8.tar.bz2 |
Merged revisions 79797 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79797 | ezio.melotti | 2010-04-05 15:51:45 +0300 (Mon, 05 Apr 2010) | 1 line
Fix some broken URLs.
........
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/extending.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst index 7f0c16e..856b1c6 100644 --- a/Doc/faq/extending.rst +++ b/Doc/faq/extending.rst @@ -54,7 +54,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://www.scipy.org/Weave>`_ are also alternatives for wrapping +C++ libraries. How can I execute arbitrary Python statements from C? @@ -200,7 +201,7 @@ 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/Weave>`_ or `SWIG <http://www.swig.org>`_ |