| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | =======================
 | 
					
						
							|  |  |  | Extending/Embedding FAQ
 | 
					
						
							|  |  |  | =======================
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-28 13:28:44 +01:00
										 |  |  | .. only:: html
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. contents::
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. highlight:: c
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-19 17:59:59 +00:00
										 |  |  | .. XXX need review for Python 3.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | Can I create my own functions in C?
 | 
					
						
							|  |  |  | -----------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Yes, you can create built-in modules containing functions, variables, exceptions
 | 
					
						
							|  |  |  | and even new types in C.  This is explained in the document
 | 
					
						
							|  |  |  | :ref:`extending-index`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Most intermediate or advanced Python books will also cover this topic.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Can I create my own functions in C++?
 | 
					
						
							|  |  |  | -------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Yes, using the C compatibility features found in C++.  Place ``extern "C" {
 | 
					
						
							|  |  |  | ... }`` around the Python include files and put ``extern "C"`` before each
 | 
					
						
							|  |  |  | function that is going to be called by the Python interpreter.  Global or static
 | 
					
						
							|  |  |  | C++ objects with constructors are probably not a good idea.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-12 09:00:29 +00:00
										 |  |  | .. _c-wrapper-software:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | Writing C is hard; are there any alternatives?
 | 
					
						
							|  |  |  | ----------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | There are a number of alternatives to writing your own C extensions, depending
 | 
					
						
							|  |  |  | on what you're trying to do.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 21:21:36 +01:00
										 |  |  | .. XXX make sure these all work
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-04 10:13:49 +03:00
										 |  |  | `Cython <https://cython.org>`_ and its relative `Pyrex
 | 
					
						
							| 
									
										
										
										
											2023-05-02 03:34:44 -03:00
										 |  |  | <https://www.csse.canterbury.ac.nz/greg.ewing/python/Pyrex/>`_ are compilers
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:57:17 +00:00
										 |  |  | 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.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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
 | 
					
						
							| 
									
										
										
										
											2022-08-04 10:13:49 +03:00
										 |  |  | with a tool such as `SWIG <https://www.swig.org>`_.  `SIP
 | 
					
						
							| 
									
										
										
										
											2024-03-13 05:19:33 +01:00
										 |  |  | <https://github.com/Python-SIP/sip>`__, `CXX
 | 
					
						
							| 
									
										
										
										
											2022-09-27 14:08:11 +03:00
										 |  |  | <https://cxx.sourceforge.net/>`_ `Boost
 | 
					
						
							| 
									
										
										
										
											2022-08-04 10:13:49 +03:00
										 |  |  | <https://www.boost.org/libs/python/doc/index.html>`_, or `Weave
 | 
					
						
							| 
									
										
										
										
											2017-12-13 13:37:51 +01:00
										 |  |  | <https://github.com/scipy/weave>`_ are also
 | 
					
						
							| 
									
										
										
										
											2014-10-29 09:24:54 +01:00
										 |  |  | alternatives for wrapping C++ libraries.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How can I execute arbitrary Python statements from C?
 | 
					
						
							|  |  |  | -----------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | The highest-level function to do this is :c:func:`PyRun_SimpleString` which takes
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | a single string argument to be executed in the context of the module
 | 
					
						
							| 
									
										
										
										
											2018-02-09 13:31:19 +02:00
										 |  |  | ``__main__`` and returns ``0`` for success and ``-1`` when an exception occurred
 | 
					
						
							| 
									
										
										
										
											2018-10-26 12:52:11 +02:00
										 |  |  | (including :exc:`SyntaxError`).  If you want more control, use
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | :c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` in
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | ``Python/pythonrun.c``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How can I evaluate an arbitrary Python expression from C?
 | 
					
						
							|  |  |  | ---------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | Call the function :c:func:`PyRun_String` from the previous question with the
 | 
					
						
							|  |  |  | start symbol :c:data:`Py_eval_input`; it parses an expression, evaluates it and
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | returns its value.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I extract C values from a Python object?
 | 
					
						
							|  |  |  | -----------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | That depends on the object's type.  If it's a tuple, :c:func:`PyTuple_Size`
 | 
					
						
							|  |  |  | returns its length and :c:func:`PyTuple_GetItem` returns the item at a specified
 | 
					
						
							| 
									
										
										
										
											2023-07-29 08:48:10 +03:00
										 |  |  | index.  Lists have similar functions, :c:func:`PyList_Size` and
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | :c:func:`PyList_GetItem`.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-22 13:43:30 -07:00
										 |  |  | For bytes, :c:func:`PyBytes_Size` returns its length and
 | 
					
						
							|  |  |  | :c:func:`PyBytes_AsStringAndSize` provides a pointer to its value and its
 | 
					
						
							|  |  |  | length.  Note that Python bytes objects may contain null bytes so C's
 | 
					
						
							| 
									
										
										
										
											2023-07-29 08:48:10 +03:00
										 |  |  | :c:func:`!strlen` should not be used.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-30 12:03:20 +02:00
										 |  |  | To test the type of an object, first make sure it isn't ``NULL``, and then use
 | 
					
						
							| 
									
										
										
										
											2013-03-22 13:43:30 -07:00
										 |  |  | :c:func:`PyBytes_Check`, :c:func:`PyTuple_Check`, :c:func:`PyList_Check`, etc.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | There is also a high-level API to Python objects which is provided by the
 | 
					
						
							|  |  |  | so-called 'abstract' interface -- read ``Include/abstract.h`` for further
 | 
					
						
							|  |  |  | details.  It allows interfacing with any kind of Python sequence using calls
 | 
					
						
							| 
									
										
										
										
											2014-03-20 10:16:09 -05:00
										 |  |  | like :c:func:`PySequence_Length`, :c:func:`PySequence_GetItem`, etc. as well
 | 
					
						
							|  |  |  | as many other useful protocols such as numbers (:c:func:`PyNumber_Index` et
 | 
					
						
							| 
									
										
										
										
											2013-03-22 13:43:30 -07:00
										 |  |  | al.) and mappings in the PyMapping APIs.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I use Py_BuildValue() to create a tuple of arbitrary length?
 | 
					
						
							|  |  |  | -------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 22:30:19 +01:00
										 |  |  | You can't.  Use :c:func:`PyTuple_Pack` instead.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I call an object's method from C?
 | 
					
						
							|  |  |  | ----------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | The :c:func:`PyObject_CallMethod` function can be used to call an arbitrary
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | method of an object.  The parameters are the object, the name of the method to
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | call, a format string like that used with :c:func:`Py_BuildValue`, and the
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | argument values::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    PyObject *
 | 
					
						
							| 
									
										
										
										
											2015-06-21 17:11:21 +03:00
										 |  |  |    PyObject_CallMethod(PyObject *object, const char *method_name,
 | 
					
						
							|  |  |  |                        const char *arg_format, ...);
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | This works for any object that has methods -- whether built-in or user-defined.
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | You are responsible for eventually :c:func:`Py_DECREF`\ 'ing the return value.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | To call, e.g., a file object's "seek" method with arguments 10, 0 (assuming the
 | 
					
						
							|  |  |  | file object pointer is "f")::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    res = PyObject_CallMethod(f, "seek", "(ii)", 10, 0);
 | 
					
						
							|  |  |  |    if (res == NULL) {
 | 
					
						
							|  |  |  |            ... an exception occurred ...
 | 
					
						
							|  |  |  |    }
 | 
					
						
							|  |  |  |    else {
 | 
					
						
							|  |  |  |            Py_DECREF(res);
 | 
					
						
							|  |  |  |    }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | Note that since :c:func:`PyObject_CallObject` *always* wants a tuple for the
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | argument list, to call a function without arguments, pass "()" for the format,
 | 
					
						
							|  |  |  | and to call a function with one argument, surround the argument in parentheses,
 | 
					
						
							|  |  |  | e.g. "(i)".
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I catch the output from PyErr_Print() (or anything that prints to stdout/stderr)?
 | 
					
						
							|  |  |  | ----------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | In Python code, define an object that supports the ``write()`` method.  Assign
 | 
					
						
							|  |  |  | this object to :data:`sys.stdout` and :data:`sys.stderr`.  Call print_error, or
 | 
					
						
							|  |  |  | just allow the standard traceback mechanism to work. Then, the output will go
 | 
					
						
							|  |  |  | wherever your ``write()`` method sends it.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 11:18:21 +02:00
										 |  |  | The easiest way to do this is to use the :class:`io.StringIO` class:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code-block:: pycon
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 22:35:31 +01:00
										 |  |  |    >>> import io, sys
 | 
					
						
							|  |  |  |    >>> sys.stdout = io.StringIO()
 | 
					
						
							|  |  |  |    >>> print('foo')
 | 
					
						
							|  |  |  |    >>> print('hello world!')
 | 
					
						
							|  |  |  |    >>> sys.stderr.write(sys.stdout.getvalue())
 | 
					
						
							|  |  |  |    foo
 | 
					
						
							|  |  |  |    hello world!
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 11:18:21 +02:00
										 |  |  | A custom object to do the same would look like this:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code-block:: pycon
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 22:35:31 +01:00
										 |  |  |    >>> import io, sys
 | 
					
						
							|  |  |  |    >>> class StdoutCatcher(io.TextIOBase):
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  |    ...     def __init__(self):
 | 
					
						
							| 
									
										
										
										
											2011-12-03 22:35:31 +01:00
										 |  |  |    ...         self.data = []
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  |    ...     def write(self, stuff):
 | 
					
						
							| 
									
										
										
										
											2011-12-03 22:35:31 +01:00
										 |  |  |    ...         self.data.append(stuff)
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  |    ...
 | 
					
						
							|  |  |  |    >>> import sys
 | 
					
						
							|  |  |  |    >>> sys.stdout = StdoutCatcher()
 | 
					
						
							| 
									
										
										
										
											2009-12-19 17:59:59 +00:00
										 |  |  |    >>> print('foo')
 | 
					
						
							|  |  |  |    >>> print('hello world!')
 | 
					
						
							| 
									
										
										
										
											2011-12-03 22:35:31 +01:00
										 |  |  |    >>> sys.stderr.write(''.join(sys.stdout.data))
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  |    foo
 | 
					
						
							|  |  |  |    hello world!
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I access a module written in Python from C?
 | 
					
						
							|  |  |  | --------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | You can get a pointer to the module object as follows::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    module = PyImport_ImportModule("<modulename>");
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | If the module hasn't been imported yet (i.e. it is not yet present in
 | 
					
						
							|  |  |  | :data:`sys.modules`), this initializes the module; otherwise it simply returns
 | 
					
						
							|  |  |  | the value of ``sys.modules["<modulename>"]``.  Note that it doesn't enter the
 | 
					
						
							|  |  |  | module into any namespace -- it only ensures it has been initialized and is
 | 
					
						
							|  |  |  | stored in :data:`sys.modules`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | You can then access the module's attributes (i.e. any name defined in the
 | 
					
						
							|  |  |  | module) as follows::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    attr = PyObject_GetAttrString(module, "<attrname>");
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | Calling :c:func:`PyObject_SetAttrString` to assign to variables in the module
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | also works.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I interface to C++ objects from Python?
 | 
					
						
							|  |  |  | ----------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Depending on your requirements, there are many approaches.  To do this manually,
 | 
					
						
							|  |  |  | begin by reading :ref:`the "Extending and Embedding" document
 | 
					
						
							|  |  |  | <extending-index>`.  Realize that for the Python run-time system, there isn't a
 | 
					
						
							|  |  |  | 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-12 09:00:29 +00:00
										 |  |  | For C++ libraries, see :ref:`c-wrapper-software`.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | I added a module using the Setup file and the make fails; why?
 | 
					
						
							|  |  |  | --------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Setup must end in a newline, if there is no newline there, the build process
 | 
					
						
							|  |  |  | fails.  (Fixing this requires some ugly shell script hackery, and this bug is so
 | 
					
						
							|  |  |  | minor that it doesn't seem worth the effort.)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I debug an extension?
 | 
					
						
							|  |  |  | ----------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | When using GDB with dynamically loaded extensions, you can't set a breakpoint in
 | 
					
						
							|  |  |  | your extension until your extension is loaded.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 11:18:21 +02:00
										 |  |  | In your ``.gdbinit`` file (or interactively), add the command:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code-block:: none
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    br _PyImport_LoadDynamicModule
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-26 11:18:21 +02:00
										 |  |  | Then, when you run GDB:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. code-block:: shell-session
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    $ gdb /local/bin/python
 | 
					
						
							|  |  |  |    gdb) run myscript.py
 | 
					
						
							|  |  |  |    gdb) continue # repeat until your extension is loaded
 | 
					
						
							|  |  |  |    gdb) finish   # so that your extension is loaded
 | 
					
						
							|  |  |  |    gdb) br myfunction.c:50
 | 
					
						
							|  |  |  |    gdb) continue
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | I want to compile a Python module on my Linux system, but some files are missing. Why?
 | 
					
						
							|  |  |  | --------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Most packaged versions of Python don't include the
 | 
					
						
							|  |  |  | :file:`/usr/lib/python2.{x}/config/` directory, which contains various files
 | 
					
						
							|  |  |  | required for compiling Python extensions.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | For Red Hat, install the python-devel RPM to get the necessary files.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | For Debian, run ``apt-get install python-dev``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I tell "incomplete input" from "invalid input"?
 | 
					
						
							|  |  |  | ------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Sometimes you want to emulate the Python interactive interpreter's behavior,
 | 
					
						
							|  |  |  | where it gives you a continuation prompt when the input is incomplete (e.g. you
 | 
					
						
							|  |  |  | typed the start of an "if" statement or you didn't close your parentheses or
 | 
					
						
							|  |  |  | triple string quotes), but it gives you a syntax error message immediately when
 | 
					
						
							|  |  |  | the input is invalid.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | In Python you can use the :mod:`codeop` module, which approximates the parser's
 | 
					
						
							|  |  |  | behavior sufficiently.  IDLE uses this, for example.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | The easiest way to do it in C is to call :c:func:`PyRun_InteractiveLoop` (perhaps
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | in a separate thread) and let the Python interpreter handle the input for
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | custom input function. See ``Modules/readline.c`` and ``Parser/myreadline.c``
 | 
					
						
							|  |  |  | for more hints.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | How do I find undefined g++ symbols __builtin_new or __pure_virtual?
 | 
					
						
							|  |  |  | --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To dynamically load g++ extension modules, you must recompile Python, relink it
 | 
					
						
							| 
									
										
										
										
											2009-12-19 23:26:38 +00:00
										 |  |  | using g++ (change LINKCC in the Python Modules Makefile), and link your
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | extension module using g++ (e.g., ``g++ -shared -o mymodule.so mymodule.o``).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Can I create an object class with some methods implemented in C and others in Python (e.g. through inheritance)?
 | 
					
						
							|  |  |  | ----------------------------------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-10 23:23:55 -07:00
										 |  |  | Yes, you can inherit from built-in classes such as :class:`int`, :class:`list`,
 | 
					
						
							|  |  |  | :class:`dict`, etc.
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-04 10:13:49 +03:00
										 |  |  | The Boost Python Library (BPL, https://www.boost.org/libs/python/doc/index.html)
 | 
					
						
							| 
									
										
										
										
											2009-10-11 21:25:26 +00:00
										 |  |  | provides a way of doing this from C++ (i.e. you can inherit from an extension
 | 
					
						
							|  |  |  | class written in C++ using the BPL).
 |