blob: c10efa976d11cd6eb90fb0ab11c961041392d4b9 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. highlightlang:: c
2
3
4.. _extending-intro:
5
6******************************
7Extending Python with C or C++
8******************************
9
10It is quite easy to add new built-in modules to Python, if you know how to
11program in C. Such :dfn:`extension modules` can do two things that can't be
12done directly in Python: they can implement new built-in object types, and they
13can call C library functions and system calls.
14
15To support extensions, the Python API (Application Programmers Interface)
16defines a set of functions, macros and variables that provide access to most
17aspects of the Python run-time system. The Python API is incorporated in a C
18source file by including the header ``"Python.h"``.
19
20The compilation of an extension module depends on its intended use as well as on
21your system setup; details are given in later chapters.
22
Benjamin Peterson63b55582015-01-05 14:38:46 -060023.. note::
Brett Cannon7f98a6c2009-09-17 03:39:33 +000024
Benjamin Peterson63b55582015-01-05 14:38:46 -060025 The C extension interface is specific to CPython, and extension modules do
26 not work on other Python implementations. In many cases, it is possible to
27 avoid writing C extensions and preserve portability to other implementations.
28 For example, if your use case is calling C library functions or system calls,
29 you should consider using the :mod:`ctypes` module or the `cffi
30 <http://cffi.readthedocs.org>`_ library rather than writing custom C code.
31 These modules let you write Python code to interface with C code and are more
32 portable between implementations of Python than writing and compiling a C
33 extension module.
Brett Cannon7f98a6c2009-09-17 03:39:33 +000034
Georg Brandl116aa622007-08-15 14:28:22 +000035
36.. _extending-simpleexample:
37
38A Simple Example
39================
40
41Let's create an extension module called ``spam`` (the favorite food of Monty
42Python fans...) and let's say we want to create a Python interface to the C
Georg Brandl60203b42010-10-06 10:11:56 +000043library function :c:func:`system`. [#]_ This function takes a null-terminated
Georg Brandl116aa622007-08-15 14:28:22 +000044character string as argument and returns an integer. We want this function to
45be callable from Python as follows::
46
47 >>> import spam
48 >>> status = spam.system("ls -l")
49
50Begin by creating a file :file:`spammodule.c`. (Historically, if a module is
51called ``spam``, the C file containing its implementation is called
52:file:`spammodule.c`; if the module name is very long, like ``spammify``, the
53module name can be just :file:`spammify.c`.)
54
55The first line of our file can be::
56
57 #include <Python.h>
58
59which pulls in the Python API (you can add a comment describing the purpose of
60the module and a copyright notice if you like).
61
Georg Brandle720c0a2009-04-27 16:20:50 +000062.. note::
Georg Brandl116aa622007-08-15 14:28:22 +000063
64 Since Python may define some pre-processor definitions which affect the standard
65 headers on some systems, you *must* include :file:`Python.h` before any standard
66 headers are included.
67
68All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` or
69``PY``, except those defined in standard header files. For convenience, and
70since they are used extensively by the Python interpreter, ``"Python.h"``
71includes a few standard header files: ``<stdio.h>``, ``<string.h>``,
72``<errno.h>``, and ``<stdlib.h>``. If the latter header file does not exist on
Georg Brandl60203b42010-10-06 10:11:56 +000073your system, it declares the functions :c:func:`malloc`, :c:func:`free` and
74:c:func:`realloc` directly.
Georg Brandl116aa622007-08-15 14:28:22 +000075
76The next thing we add to our module file is the C function that will be called
77when the Python expression ``spam.system(string)`` is evaluated (we'll see
78shortly how it ends up being called)::
79
80 static PyObject *
81 spam_system(PyObject *self, PyObject *args)
82 {
83 const char *command;
84 int sts;
85
86 if (!PyArg_ParseTuple(args, "s", &command))
87 return NULL;
88 sts = system(command);
Georg Brandlc877a7c2010-11-26 11:55:48 +000089 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +000090 }
91
92There is a straightforward translation from the argument list in Python (for
93example, the single expression ``"ls -l"``) to the arguments passed to the C
94function. The C function always has two arguments, conventionally named *self*
95and *args*.
96
Georg Brandl21dc5ba2009-07-11 10:43:08 +000097The *self* argument points to the module object for module-level functions;
98for a method it would point to the object instance.
Georg Brandl116aa622007-08-15 14:28:22 +000099
100The *args* argument will be a pointer to a Python tuple object containing the
101arguments. Each item of the tuple corresponds to an argument in the call's
102argument list. The arguments are Python objects --- in order to do anything
103with them in our C function we have to convert them to C values. The function
Georg Brandl60203b42010-10-06 10:11:56 +0000104:c:func:`PyArg_ParseTuple` in the Python API checks the argument types and
Georg Brandl116aa622007-08-15 14:28:22 +0000105converts them to C values. It uses a template string to determine the required
106types of the arguments as well as the types of the C variables into which to
107store the converted values. More about this later.
108
Georg Brandl60203b42010-10-06 10:11:56 +0000109:c:func:`PyArg_ParseTuple` returns true (nonzero) if all arguments have the right
Georg Brandl116aa622007-08-15 14:28:22 +0000110type and its components have been stored in the variables whose addresses are
111passed. It returns false (zero) if an invalid argument list was passed. In the
112latter case it also raises an appropriate exception so the calling function can
113return *NULL* immediately (as we saw in the example).
114
115
116.. _extending-errors:
117
118Intermezzo: Errors and Exceptions
119=================================
120
121An important convention throughout the Python interpreter is the following: when
122a function fails, it should set an exception condition and return an error value
123(usually a *NULL* pointer). Exceptions are stored in a static global variable
124inside the interpreter; if this variable is *NULL* no exception has occurred. A
125second global variable stores the "associated value" of the exception (the
126second argument to :keyword:`raise`). A third variable contains the stack
127traceback in case the error originated in Python code. These three variables
128are the C equivalents of the result in Python of :meth:`sys.exc_info` (see the
129section on module :mod:`sys` in the Python Library Reference). It is important
130to know about them to understand how errors are passed around.
131
132The Python API defines a number of functions to set various types of exceptions.
133
Georg Brandl60203b42010-10-06 10:11:56 +0000134The most common one is :c:func:`PyErr_SetString`. Its arguments are an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000135object and a C string. The exception object is usually a predefined object like
Georg Brandl60203b42010-10-06 10:11:56 +0000136:c:data:`PyExc_ZeroDivisionError`. The C string indicates the cause of the error
Georg Brandl116aa622007-08-15 14:28:22 +0000137and is converted to a Python string object and stored as the "associated value"
138of the exception.
139
Georg Brandl60203b42010-10-06 10:11:56 +0000140Another useful function is :c:func:`PyErr_SetFromErrno`, which only takes an
Georg Brandl116aa622007-08-15 14:28:22 +0000141exception argument and constructs the associated value by inspection of the
Georg Brandl60203b42010-10-06 10:11:56 +0000142global variable :c:data:`errno`. The most general function is
143:c:func:`PyErr_SetObject`, which takes two object arguments, the exception and
144its associated value. You don't need to :c:func:`Py_INCREF` the objects passed
Georg Brandl116aa622007-08-15 14:28:22 +0000145to any of these functions.
146
147You can test non-destructively whether an exception has been set with
Georg Brandl60203b42010-10-06 10:11:56 +0000148:c:func:`PyErr_Occurred`. This returns the current exception object, or *NULL*
Georg Brandl116aa622007-08-15 14:28:22 +0000149if no exception has occurred. You normally don't need to call
Georg Brandl60203b42010-10-06 10:11:56 +0000150:c:func:`PyErr_Occurred` to see whether an error occurred in a function call,
Georg Brandl116aa622007-08-15 14:28:22 +0000151since you should be able to tell from the return value.
152
153When a function *f* that calls another function *g* detects that the latter
154fails, *f* should itself return an error value (usually *NULL* or ``-1``). It
Georg Brandl60203b42010-10-06 10:11:56 +0000155should *not* call one of the :c:func:`PyErr_\*` functions --- one has already
Georg Brandl116aa622007-08-15 14:28:22 +0000156been called by *g*. *f*'s caller is then supposed to also return an error
Georg Brandl60203b42010-10-06 10:11:56 +0000157indication to *its* caller, again *without* calling :c:func:`PyErr_\*`, and so on
Georg Brandl116aa622007-08-15 14:28:22 +0000158--- the most detailed cause of the error was already reported by the function
159that first detected it. Once the error reaches the Python interpreter's main
160loop, this aborts the currently executing Python code and tries to find an
161exception handler specified by the Python programmer.
162
163(There are situations where a module can actually give a more detailed error
Georg Brandl60203b42010-10-06 10:11:56 +0000164message by calling another :c:func:`PyErr_\*` function, and in such cases it is
Georg Brandl116aa622007-08-15 14:28:22 +0000165fine to do so. As a general rule, however, this is not necessary, and can cause
166information about the cause of the error to be lost: most operations can fail
167for a variety of reasons.)
168
169To ignore an exception set by a function call that failed, the exception
Georg Brandl682d7e02010-10-06 10:26:05 +0000170condition must be cleared explicitly by calling :c:func:`PyErr_Clear`. The only
Georg Brandl60203b42010-10-06 10:11:56 +0000171time C code should call :c:func:`PyErr_Clear` is if it doesn't want to pass the
Georg Brandl116aa622007-08-15 14:28:22 +0000172error on to the interpreter but wants to handle it completely by itself
173(possibly by trying something else, or pretending nothing went wrong).
174
Georg Brandl60203b42010-10-06 10:11:56 +0000175Every failing :c:func:`malloc` call must be turned into an exception --- the
176direct caller of :c:func:`malloc` (or :c:func:`realloc`) must call
177:c:func:`PyErr_NoMemory` and return a failure indicator itself. All the
178object-creating functions (for example, :c:func:`PyLong_FromLong`) already do
179this, so this note is only relevant to those who call :c:func:`malloc` directly.
Georg Brandl116aa622007-08-15 14:28:22 +0000180
Georg Brandl60203b42010-10-06 10:11:56 +0000181Also note that, with the important exception of :c:func:`PyArg_ParseTuple` and
Georg Brandl116aa622007-08-15 14:28:22 +0000182friends, functions that return an integer status usually return a positive value
183or zero for success and ``-1`` for failure, like Unix system calls.
184
Georg Brandl60203b42010-10-06 10:11:56 +0000185Finally, be careful to clean up garbage (by making :c:func:`Py_XDECREF` or
186:c:func:`Py_DECREF` calls for objects you have already created) when you return
Georg Brandl116aa622007-08-15 14:28:22 +0000187an error indicator!
188
189The choice of which exception to raise is entirely yours. There are predeclared
190C objects corresponding to all built-in Python exceptions, such as
Georg Brandl60203b42010-10-06 10:11:56 +0000191:c:data:`PyExc_ZeroDivisionError`, which you can use directly. Of course, you
192should choose exceptions wisely --- don't use :c:data:`PyExc_TypeError` to mean
193that a file couldn't be opened (that should probably be :c:data:`PyExc_IOError`).
194If something's wrong with the argument list, the :c:func:`PyArg_ParseTuple`
195function usually raises :c:data:`PyExc_TypeError`. If you have an argument whose
Georg Brandl116aa622007-08-15 14:28:22 +0000196value must be in a particular range or must satisfy other conditions,
Georg Brandl60203b42010-10-06 10:11:56 +0000197:c:data:`PyExc_ValueError` is appropriate.
Georg Brandl116aa622007-08-15 14:28:22 +0000198
199You can also define a new exception that is unique to your module. For this, you
200usually declare a static object variable at the beginning of your file::
201
202 static PyObject *SpamError;
203
Georg Brandl60203b42010-10-06 10:11:56 +0000204and initialize it in your module's initialization function (:c:func:`PyInit_spam`)
Georg Brandl116aa622007-08-15 14:28:22 +0000205with an exception object (leaving out the error checking for now)::
206
207 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000208 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000209 {
210 PyObject *m;
211
Martin v. Löwis1a214512008-06-11 05:26:20 +0000212 m = PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000213 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000214 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000215
216 SpamError = PyErr_NewException("spam.error", NULL, NULL);
217 Py_INCREF(SpamError);
218 PyModule_AddObject(m, "error", SpamError);
Martin v. Löwis1a214512008-06-11 05:26:20 +0000219 return m;
Georg Brandl116aa622007-08-15 14:28:22 +0000220 }
221
222Note that the Python name for the exception object is :exc:`spam.error`. The
Georg Brandl60203b42010-10-06 10:11:56 +0000223:c:func:`PyErr_NewException` function may create a class with the base class
Georg Brandl116aa622007-08-15 14:28:22 +0000224being :exc:`Exception` (unless another class is passed in instead of *NULL*),
225described in :ref:`bltin-exceptions`.
226
Georg Brandl60203b42010-10-06 10:11:56 +0000227Note also that the :c:data:`SpamError` variable retains a reference to the newly
Georg Brandl116aa622007-08-15 14:28:22 +0000228created exception class; this is intentional! Since the exception could be
229removed from the module by external code, an owned reference to the class is
Georg Brandl60203b42010-10-06 10:11:56 +0000230needed to ensure that it will not be discarded, causing :c:data:`SpamError` to
Georg Brandl116aa622007-08-15 14:28:22 +0000231become a dangling pointer. Should it become a dangling pointer, C code which
232raises the exception could cause a core dump or other unintended side effects.
233
Georg Brandl9c491c92010-08-02 20:21:21 +0000234We discuss the use of ``PyMODINIT_FUNC`` as a function return type later in this
Georg Brandl116aa622007-08-15 14:28:22 +0000235sample.
236
Georg Brandl9c491c92010-08-02 20:21:21 +0000237The :exc:`spam.error` exception can be raised in your extension module using a
Georg Brandl60203b42010-10-06 10:11:56 +0000238call to :c:func:`PyErr_SetString` as shown below::
Georg Brandl9c491c92010-08-02 20:21:21 +0000239
240 static PyObject *
241 spam_system(PyObject *self, PyObject *args)
242 {
243 const char *command;
244 int sts;
245
246 if (!PyArg_ParseTuple(args, "s", &command))
247 return NULL;
248 sts = system(command);
249 if (sts < 0) {
250 PyErr_SetString(SpamError, "System command failed");
251 return NULL;
252 }
253 return PyLong_FromLong(sts);
254 }
255
Georg Brandl116aa622007-08-15 14:28:22 +0000256
257.. _backtoexample:
258
259Back to the Example
260===================
261
262Going back to our example function, you should now be able to understand this
263statement::
264
265 if (!PyArg_ParseTuple(args, "s", &command))
266 return NULL;
267
268It returns *NULL* (the error indicator for functions returning object pointers)
269if an error is detected in the argument list, relying on the exception set by
Georg Brandl60203b42010-10-06 10:11:56 +0000270:c:func:`PyArg_ParseTuple`. Otherwise the string value of the argument has been
271copied to the local variable :c:data:`command`. This is a pointer assignment and
Georg Brandl116aa622007-08-15 14:28:22 +0000272you are not supposed to modify the string to which it points (so in Standard C,
Georg Brandl60203b42010-10-06 10:11:56 +0000273the variable :c:data:`command` should properly be declared as ``const char
Georg Brandl116aa622007-08-15 14:28:22 +0000274*command``).
275
Georg Brandl60203b42010-10-06 10:11:56 +0000276The next statement is a call to the Unix function :c:func:`system`, passing it
277the string we just got from :c:func:`PyArg_ParseTuple`::
Georg Brandl116aa622007-08-15 14:28:22 +0000278
279 sts = system(command);
280
Georg Brandl60203b42010-10-06 10:11:56 +0000281Our :func:`spam.system` function must return the value of :c:data:`sts` as a
Georg Brandlc877a7c2010-11-26 11:55:48 +0000282Python object. This is done using the function :c:func:`PyLong_FromLong`. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000283
Georg Brandlc877a7c2010-11-26 11:55:48 +0000284 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +0000285
286In this case, it will return an integer object. (Yes, even integers are objects
287on the heap in Python!)
288
289If you have a C function that returns no useful argument (a function returning
Georg Brandl60203b42010-10-06 10:11:56 +0000290:c:type:`void`), the corresponding Python function must return ``None``. You
291need this idiom to do so (which is implemented by the :c:macro:`Py_RETURN_NONE`
Georg Brandl116aa622007-08-15 14:28:22 +0000292macro)::
293
294 Py_INCREF(Py_None);
295 return Py_None;
296
Georg Brandl60203b42010-10-06 10:11:56 +0000297:c:data:`Py_None` is the C name for the special Python object ``None``. It is a
Georg Brandl116aa622007-08-15 14:28:22 +0000298genuine Python object rather than a *NULL* pointer, which means "error" in most
299contexts, as we have seen.
300
301
302.. _methodtable:
303
304The Module's Method Table and Initialization Function
305=====================================================
306
Georg Brandl60203b42010-10-06 10:11:56 +0000307I promised to show how :c:func:`spam_system` is called from Python programs.
Georg Brandl116aa622007-08-15 14:28:22 +0000308First, we need to list its name and address in a "method table"::
309
310 static PyMethodDef SpamMethods[] = {
311 ...
312 {"system", spam_system, METH_VARARGS,
313 "Execute a shell command."},
314 ...
315 {NULL, NULL, 0, NULL} /* Sentinel */
316 };
317
318Note the third entry (``METH_VARARGS``). This is a flag telling the interpreter
319the calling convention to be used for the C function. It should normally always
320be ``METH_VARARGS`` or ``METH_VARARGS | METH_KEYWORDS``; a value of ``0`` means
Georg Brandl60203b42010-10-06 10:11:56 +0000321that an obsolete variant of :c:func:`PyArg_ParseTuple` is used.
Georg Brandl116aa622007-08-15 14:28:22 +0000322
323When using only ``METH_VARARGS``, the function should expect the Python-level
324parameters to be passed in as a tuple acceptable for parsing via
Georg Brandl60203b42010-10-06 10:11:56 +0000325:c:func:`PyArg_ParseTuple`; more information on this function is provided below.
Georg Brandl116aa622007-08-15 14:28:22 +0000326
327The :const:`METH_KEYWORDS` bit may be set in the third field if keyword
328arguments should be passed to the function. In this case, the C function should
Eli Bendersky44fb6132012-02-11 10:27:31 +0200329accept a third ``PyObject *`` parameter which will be a dictionary of keywords.
Georg Brandl60203b42010-10-06 10:11:56 +0000330Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments to such a
Georg Brandl116aa622007-08-15 14:28:22 +0000331function.
332
Martin v. Löwis1a214512008-06-11 05:26:20 +0000333The method table must be referenced in the module definition structure::
334
Benjamin Peterson3851d122008-10-20 21:04:06 +0000335 static struct PyModuleDef spammodule = {
Martin v. Löwis1a214512008-06-11 05:26:20 +0000336 PyModuleDef_HEAD_INIT,
337 "spam", /* name of module */
338 spam_doc, /* module documentation, may be NULL */
339 -1, /* size of per-interpreter state of the module,
340 or -1 if the module keeps state in global variables. */
341 SpamMethods
342 };
343
344This structure, in turn, must be passed to the interpreter in the module's
Georg Brandl116aa622007-08-15 14:28:22 +0000345initialization function. The initialization function must be named
Georg Brandl60203b42010-10-06 10:11:56 +0000346:c:func:`PyInit_name`, where *name* is the name of the module, and should be the
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000347only non-\ ``static`` item defined in the module file::
Georg Brandl116aa622007-08-15 14:28:22 +0000348
349 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000350 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000351 {
Martin v. Löwis1a214512008-06-11 05:26:20 +0000352 return PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000353 }
354
Benjamin Peterson71e30a02008-12-24 16:27:25 +0000355Note that PyMODINIT_FUNC declares the function as ``PyObject *`` return type,
356declares any special linkage declarations required by the platform, and for C++
Georg Brandl116aa622007-08-15 14:28:22 +0000357declares the function as ``extern "C"``.
358
359When the Python program imports module :mod:`spam` for the first time,
Georg Brandl60203b42010-10-06 10:11:56 +0000360:c:func:`PyInit_spam` is called. (See below for comments about embedding Python.)
361It calls :c:func:`PyModule_Create`, which returns a module object, and
Georg Brandl116aa622007-08-15 14:28:22 +0000362inserts built-in function objects into the newly created module based upon the
Georg Brandl60203b42010-10-06 10:11:56 +0000363table (an array of :c:type:`PyMethodDef` structures) found in the module definition.
364:c:func:`PyModule_Create` returns a pointer to the module object
Martin v. Löwis1a214512008-06-11 05:26:20 +0000365that it creates. It may abort with a fatal error for
Georg Brandl116aa622007-08-15 14:28:22 +0000366certain errors, or return *NULL* if the module could not be initialized
Martin v. Löwis1a214512008-06-11 05:26:20 +0000367satisfactorily. The init function must return the module object to its caller,
368so that it then gets inserted into ``sys.modules``.
Georg Brandl116aa622007-08-15 14:28:22 +0000369
Georg Brandl60203b42010-10-06 10:11:56 +0000370When embedding Python, the :c:func:`PyInit_spam` function is not called
371automatically unless there's an entry in the :c:data:`PyImport_Inittab` table.
372To add the module to the initialization table, use :c:func:`PyImport_AppendInittab`,
Martin v. Löwis1a214512008-06-11 05:26:20 +0000373optionally followed by an import of the module::
Georg Brandl116aa622007-08-15 14:28:22 +0000374
375 int
376 main(int argc, char *argv[])
377 {
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000378 /* Add a built-in module, before Py_Initialize */
Martin v. Löwis1a214512008-06-11 05:26:20 +0000379 PyImport_AppendInittab("spam", PyInit_spam);
380
Georg Brandl116aa622007-08-15 14:28:22 +0000381 /* Pass argv[0] to the Python interpreter */
382 Py_SetProgramName(argv[0]);
383
384 /* Initialize the Python interpreter. Required. */
385 Py_Initialize();
386
Martin v. Löwis1a214512008-06-11 05:26:20 +0000387 /* Optionally import the module; alternatively,
388 import can be deferred until the embedded script
389 imports it. */
390 PyImport_ImportModule("spam");
Georg Brandl116aa622007-08-15 14:28:22 +0000391
Georg Brandl49c6fc92013-10-06 13:14:10 +0200392 ...
393
Georg Brandl116aa622007-08-15 14:28:22 +0000394.. note::
395
396 Removing entries from ``sys.modules`` or importing compiled modules into
Georg Brandl60203b42010-10-06 10:11:56 +0000397 multiple interpreters within a process (or following a :c:func:`fork` without an
398 intervening :c:func:`exec`) can create problems for some extension modules.
Georg Brandl116aa622007-08-15 14:28:22 +0000399 Extension module authors should exercise caution when initializing internal data
400 structures.
401
402A more substantial example module is included in the Python source distribution
403as :file:`Modules/xxmodule.c`. This file may be used as a template or simply
Benjamin Peterson2614cda2010-03-21 22:36:19 +0000404read as an example.
Georg Brandl116aa622007-08-15 14:28:22 +0000405
406
407.. _compilation:
408
409Compilation and Linkage
410=======================
411
412There are two more things to do before you can use your new extension: compiling
413and linking it with the Python system. If you use dynamic loading, the details
414may depend on the style of dynamic loading your system uses; see the chapters
415about building extension modules (chapter :ref:`building`) and additional
416information that pertains only to building on Windows (chapter
417:ref:`building-on-windows`) for more information about this.
418
419If you can't use dynamic loading, or if you want to make your module a permanent
420part of the Python interpreter, you will have to change the configuration setup
421and rebuild the interpreter. Luckily, this is very simple on Unix: just place
422your file (:file:`spammodule.c` for example) in the :file:`Modules/` directory
423of an unpacked source distribution, add a line to the file
424:file:`Modules/Setup.local` describing your file::
425
426 spam spammodule.o
427
428and rebuild the interpreter by running :program:`make` in the toplevel
429directory. You can also run :program:`make` in the :file:`Modules/`
430subdirectory, but then you must first rebuild :file:`Makefile` there by running
431':program:`make` Makefile'. (This is necessary each time you change the
432:file:`Setup` file.)
433
434If your module requires additional libraries to link with, these can be listed
435on the line in the configuration file as well, for instance::
436
437 spam spammodule.o -lX11
438
439
440.. _callingpython:
441
442Calling Python Functions from C
443===============================
444
445So far we have concentrated on making C functions callable from Python. The
446reverse is also useful: calling Python functions from C. This is especially the
447case for libraries that support so-called "callback" functions. If a C
448interface makes use of callbacks, the equivalent Python often needs to provide a
449callback mechanism to the Python programmer; the implementation will require
450calling the Python callback functions from a C callback. Other uses are also
451imaginable.
452
453Fortunately, the Python interpreter is easily called recursively, and there is a
454standard interface to call a Python function. (I won't dwell on how to call the
455Python parser with a particular string as input --- if you're interested, have a
456look at the implementation of the :option:`-c` command line option in
Georg Brandl22291c52007-09-06 14:49:02 +0000457:file:`Modules/main.c` from the Python source code.)
Georg Brandl116aa622007-08-15 14:28:22 +0000458
459Calling a Python function is easy. First, the Python program must somehow pass
460you the Python function object. You should provide a function (or some other
461interface) to do this. When this function is called, save a pointer to the
Georg Brandl60203b42010-10-06 10:11:56 +0000462Python function object (be careful to :c:func:`Py_INCREF` it!) in a global
Georg Brandl116aa622007-08-15 14:28:22 +0000463variable --- or wherever you see fit. For example, the following function might
464be part of a module definition::
465
466 static PyObject *my_callback = NULL;
467
468 static PyObject *
469 my_set_callback(PyObject *dummy, PyObject *args)
470 {
471 PyObject *result = NULL;
472 PyObject *temp;
473
474 if (PyArg_ParseTuple(args, "O:set_callback", &temp)) {
475 if (!PyCallable_Check(temp)) {
476 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
477 return NULL;
478 }
479 Py_XINCREF(temp); /* Add a reference to new callback */
480 Py_XDECREF(my_callback); /* Dispose of previous callback */
481 my_callback = temp; /* Remember new callback */
482 /* Boilerplate to return "None" */
483 Py_INCREF(Py_None);
484 result = Py_None;
485 }
486 return result;
487 }
488
489This function must be registered with the interpreter using the
490:const:`METH_VARARGS` flag; this is described in section :ref:`methodtable`. The
Georg Brandl60203b42010-10-06 10:11:56 +0000491:c:func:`PyArg_ParseTuple` function and its arguments are documented in section
Georg Brandl116aa622007-08-15 14:28:22 +0000492:ref:`parsetuple`.
493
Georg Brandl60203b42010-10-06 10:11:56 +0000494The macros :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` increment/decrement the
Georg Brandl116aa622007-08-15 14:28:22 +0000495reference count of an object and are safe in the presence of *NULL* pointers
496(but note that *temp* will not be *NULL* in this context). More info on them
497in section :ref:`refcounts`.
498
Benjamin Petersond23f8222009-04-05 19:13:16 +0000499.. index:: single: PyObject_CallObject()
Georg Brandl116aa622007-08-15 14:28:22 +0000500
501Later, when it is time to call the function, you call the C function
Georg Brandl60203b42010-10-06 10:11:56 +0000502:c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
Georg Brandl116aa622007-08-15 14:28:22 +0000503arbitrary Python objects: the Python function, and the argument list. The
504argument list must always be a tuple object, whose length is the number of
Georg Brandl48310cd2009-01-03 21:18:54 +0000505arguments. To call the Python function with no arguments, pass in NULL, or
Christian Heimesd8654cf2007-12-02 15:22:16 +0000506an empty tuple; to call it with one argument, pass a singleton tuple.
Georg Brandl60203b42010-10-06 10:11:56 +0000507:c:func:`Py_BuildValue` returns a tuple when its format string consists of zero
Christian Heimesd8654cf2007-12-02 15:22:16 +0000508or more format codes between parentheses. For example::
Georg Brandl116aa622007-08-15 14:28:22 +0000509
510 int arg;
511 PyObject *arglist;
512 PyObject *result;
513 ...
514 arg = 123;
515 ...
516 /* Time to call the callback */
517 arglist = Py_BuildValue("(i)", arg);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000518 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl116aa622007-08-15 14:28:22 +0000519 Py_DECREF(arglist);
520
Georg Brandl60203b42010-10-06 10:11:56 +0000521:c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
522value of the Python function. :c:func:`PyObject_CallObject` is
Georg Brandl116aa622007-08-15 14:28:22 +0000523"reference-count-neutral" with respect to its arguments. In the example a new
Georg Brandl60203b42010-10-06 10:11:56 +0000524tuple was created to serve as the argument list, which is :c:func:`Py_DECREF`\
Georg Brandl337672b2013-10-06 11:02:38 +0200525-ed immediately after the :c:func:`PyObject_CallObject` call.
Georg Brandl116aa622007-08-15 14:28:22 +0000526
Georg Brandl60203b42010-10-06 10:11:56 +0000527The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
Georg Brandl116aa622007-08-15 14:28:22 +0000528new object, or it is an existing object whose reference count has been
529incremented. So, unless you want to save it in a global variable, you should
Georg Brandl60203b42010-10-06 10:11:56 +0000530somehow :c:func:`Py_DECREF` the result, even (especially!) if you are not
Georg Brandl116aa622007-08-15 14:28:22 +0000531interested in its value.
532
533Before you do this, however, it is important to check that the return value
534isn't *NULL*. If it is, the Python function terminated by raising an exception.
Georg Brandl60203b42010-10-06 10:11:56 +0000535If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
Georg Brandl116aa622007-08-15 14:28:22 +0000536should now return an error indication to its Python caller, so the interpreter
537can print a stack trace, or the calling Python code can handle the exception.
538If this is not possible or desirable, the exception should be cleared by calling
Georg Brandl60203b42010-10-06 10:11:56 +0000539:c:func:`PyErr_Clear`. For example::
Georg Brandl116aa622007-08-15 14:28:22 +0000540
541 if (result == NULL)
542 return NULL; /* Pass error back */
543 ...use result...
Georg Brandl48310cd2009-01-03 21:18:54 +0000544 Py_DECREF(result);
Georg Brandl116aa622007-08-15 14:28:22 +0000545
546Depending on the desired interface to the Python callback function, you may also
Georg Brandl60203b42010-10-06 10:11:56 +0000547have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
Georg Brandl116aa622007-08-15 14:28:22 +0000548the argument list is also provided by the Python program, through the same
549interface that specified the callback function. It can then be saved and used
550in the same manner as the function object. In other cases, you may have to
551construct a new tuple to pass as the argument list. The simplest way to do this
Georg Brandl60203b42010-10-06 10:11:56 +0000552is to call :c:func:`Py_BuildValue`. For example, if you want to pass an integral
Georg Brandl116aa622007-08-15 14:28:22 +0000553event code, you might use the following code::
554
555 PyObject *arglist;
556 ...
557 arglist = Py_BuildValue("(l)", eventcode);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000558 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl116aa622007-08-15 14:28:22 +0000559 Py_DECREF(arglist);
560 if (result == NULL)
561 return NULL; /* Pass error back */
562 /* Here maybe use the result */
563 Py_DECREF(result);
564
565Note the placement of ``Py_DECREF(arglist)`` immediately after the call, before
Christian Heimesd8654cf2007-12-02 15:22:16 +0000566the error check! Also note that strictly speaking this code is not complete:
Georg Brandl60203b42010-10-06 10:11:56 +0000567:c:func:`Py_BuildValue` may run out of memory, and this should be checked.
Georg Brandl116aa622007-08-15 14:28:22 +0000568
Georg Brandl48310cd2009-01-03 21:18:54 +0000569You may also call a function with keyword arguments by using
Georg Brandl60203b42010-10-06 10:11:56 +0000570:c:func:`PyObject_Call`, which supports arguments and keyword arguments. As in
571the above example, we use :c:func:`Py_BuildValue` to construct the dictionary. ::
Christian Heimesd8654cf2007-12-02 15:22:16 +0000572
573 PyObject *dict;
574 ...
575 dict = Py_BuildValue("{s:i}", "name", val);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000576 result = PyObject_Call(my_callback, NULL, dict);
Christian Heimesd8654cf2007-12-02 15:22:16 +0000577 Py_DECREF(dict);
578 if (result == NULL)
579 return NULL; /* Pass error back */
580 /* Here maybe use the result */
581 Py_DECREF(result);
Georg Brandl116aa622007-08-15 14:28:22 +0000582
Benjamin Petersond23f8222009-04-05 19:13:16 +0000583
Georg Brandl116aa622007-08-15 14:28:22 +0000584.. _parsetuple:
585
586Extracting Parameters in Extension Functions
587============================================
588
589.. index:: single: PyArg_ParseTuple()
590
Georg Brandl60203b42010-10-06 10:11:56 +0000591The :c:func:`PyArg_ParseTuple` function is declared as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000592
593 int PyArg_ParseTuple(PyObject *arg, char *format, ...);
594
595The *arg* argument must be a tuple object containing an argument list passed
596from Python to a C function. The *format* argument must be a format string,
597whose syntax is explained in :ref:`arg-parsing` in the Python/C API Reference
598Manual. The remaining arguments must be addresses of variables whose type is
599determined by the format string.
600
Georg Brandl60203b42010-10-06 10:11:56 +0000601Note that while :c:func:`PyArg_ParseTuple` checks that the Python arguments have
Georg Brandl116aa622007-08-15 14:28:22 +0000602the required types, it cannot check the validity of the addresses of C variables
603passed to the call: if you make mistakes there, your code will probably crash or
604at least overwrite random bits in memory. So be careful!
605
606Note that any Python object references which are provided to the caller are
607*borrowed* references; do not decrement their reference count!
608
609Some example calls::
610
Gregory P. Smith02c3b5c2008-11-23 23:49:16 +0000611 #define PY_SSIZE_T_CLEAN /* Make "s#" use Py_ssize_t rather than int. */
612 #include <Python.h>
613
614::
615
Georg Brandl116aa622007-08-15 14:28:22 +0000616 int ok;
617 int i, j;
618 long k, l;
619 const char *s;
Gregory P. Smith02c3b5c2008-11-23 23:49:16 +0000620 Py_ssize_t size;
Georg Brandl116aa622007-08-15 14:28:22 +0000621
622 ok = PyArg_ParseTuple(args, ""); /* No arguments */
623 /* Python call: f() */
624
625::
626
627 ok = PyArg_ParseTuple(args, "s", &s); /* A string */
628 /* Possible Python call: f('whoops!') */
629
630::
631
632 ok = PyArg_ParseTuple(args, "lls", &k, &l, &s); /* Two longs and a string */
633 /* Possible Python call: f(1, 2, 'three') */
634
635::
636
637 ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size);
638 /* A pair of ints and a string, whose size is also returned */
639 /* Possible Python call: f((1, 2), 'three') */
640
641::
642
643 {
644 const char *file;
645 const char *mode = "r";
646 int bufsize = 0;
647 ok = PyArg_ParseTuple(args, "s|si", &file, &mode, &bufsize);
648 /* A string, and optionally another string and an integer */
649 /* Possible Python calls:
650 f('spam')
651 f('spam', 'w')
652 f('spam', 'wb', 100000) */
653 }
654
655::
656
657 {
658 int left, top, right, bottom, h, v;
659 ok = PyArg_ParseTuple(args, "((ii)(ii))(ii)",
660 &left, &top, &right, &bottom, &h, &v);
661 /* A rectangle and a point */
662 /* Possible Python call:
663 f(((0, 0), (400, 300)), (10, 10)) */
664 }
665
666::
667
668 {
669 Py_complex c;
670 ok = PyArg_ParseTuple(args, "D:myfunction", &c);
671 /* a complex, also providing a function name for errors */
672 /* Possible Python call: myfunction(1+2j) */
673 }
674
675
676.. _parsetupleandkeywords:
677
678Keyword Parameters for Extension Functions
679==========================================
680
681.. index:: single: PyArg_ParseTupleAndKeywords()
682
Georg Brandl60203b42010-10-06 10:11:56 +0000683The :c:func:`PyArg_ParseTupleAndKeywords` function is declared as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000684
685 int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict,
686 char *format, char *kwlist[], ...);
687
688The *arg* and *format* parameters are identical to those of the
Georg Brandl60203b42010-10-06 10:11:56 +0000689:c:func:`PyArg_ParseTuple` function. The *kwdict* parameter is the dictionary of
Georg Brandl116aa622007-08-15 14:28:22 +0000690keywords received as the third parameter from the Python runtime. The *kwlist*
691parameter is a *NULL*-terminated list of strings which identify the parameters;
692the names are matched with the type information from *format* from left to
Georg Brandl60203b42010-10-06 10:11:56 +0000693right. On success, :c:func:`PyArg_ParseTupleAndKeywords` returns true, otherwise
Georg Brandl116aa622007-08-15 14:28:22 +0000694it returns false and raises an appropriate exception.
695
696.. note::
697
698 Nested tuples cannot be parsed when using keyword arguments! Keyword parameters
699 passed in which are not present in the *kwlist* will cause :exc:`TypeError` to
700 be raised.
701
702.. index:: single: Philbrick, Geoff
703
704Here is an example module which uses keywords, based on an example by Geoff
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000705Philbrick (philbrick@hks.com)::
Georg Brandl116aa622007-08-15 14:28:22 +0000706
707 #include "Python.h"
708
709 static PyObject *
710 keywdarg_parrot(PyObject *self, PyObject *args, PyObject *keywds)
Georg Brandl48310cd2009-01-03 21:18:54 +0000711 {
Georg Brandl116aa622007-08-15 14:28:22 +0000712 int voltage;
713 char *state = "a stiff";
714 char *action = "voom";
715 char *type = "Norwegian Blue";
716
717 static char *kwlist[] = {"voltage", "state", "action", "type", NULL};
718
Georg Brandl48310cd2009-01-03 21:18:54 +0000719 if (!PyArg_ParseTupleAndKeywords(args, keywds, "i|sss", kwlist,
Georg Brandl116aa622007-08-15 14:28:22 +0000720 &voltage, &state, &action, &type))
Georg Brandl48310cd2009-01-03 21:18:54 +0000721 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000722
Georg Brandl48310cd2009-01-03 21:18:54 +0000723 printf("-- This parrot wouldn't %s if you put %i Volts through it.\n",
Georg Brandl116aa622007-08-15 14:28:22 +0000724 action, voltage);
725 printf("-- Lovely plumage, the %s -- It's %s!\n", type, state);
726
Georg Brandla072de12013-10-06 20:46:08 +0200727 Py_RETURN_NONE;
Georg Brandl116aa622007-08-15 14:28:22 +0000728 }
729
730 static PyMethodDef keywdarg_methods[] = {
731 /* The cast of the function is necessary since PyCFunction values
732 * only take two PyObject* parameters, and keywdarg_parrot() takes
733 * three.
734 */
735 {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,
736 "Print a lovely skit to standard output."},
737 {NULL, NULL, 0, NULL} /* sentinel */
738 };
739
Eli Bendersky8f773492012-08-15 14:49:49 +0300740 static struct PyModuleDef keywdargmodule = {
741 PyModuleDef_HEAD_INIT,
742 "keywdarg",
743 NULL,
744 -1,
745 keywdarg_methods
746 };
Georg Brandl116aa622007-08-15 14:28:22 +0000747
Eli Bendersky8f773492012-08-15 14:49:49 +0300748 PyMODINIT_FUNC
749 PyInit_keywdarg(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000750 {
Eli Bendersky8f773492012-08-15 14:49:49 +0300751 return PyModule_Create(&keywdargmodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000752 }
753
754
755.. _buildvalue:
756
757Building Arbitrary Values
758=========================
759
Georg Brandl60203b42010-10-06 10:11:56 +0000760This function is the counterpart to :c:func:`PyArg_ParseTuple`. It is declared
Georg Brandl116aa622007-08-15 14:28:22 +0000761as follows::
762
763 PyObject *Py_BuildValue(char *format, ...);
764
765It recognizes a set of format units similar to the ones recognized by
Georg Brandl60203b42010-10-06 10:11:56 +0000766:c:func:`PyArg_ParseTuple`, but the arguments (which are input to the function,
Georg Brandl116aa622007-08-15 14:28:22 +0000767not output) must not be pointers, just values. It returns a new Python object,
768suitable for returning from a C function called from Python.
769
Georg Brandl60203b42010-10-06 10:11:56 +0000770One difference with :c:func:`PyArg_ParseTuple`: while the latter requires its
Georg Brandl116aa622007-08-15 14:28:22 +0000771first argument to be a tuple (since Python argument lists are always represented
Georg Brandl60203b42010-10-06 10:11:56 +0000772as tuples internally), :c:func:`Py_BuildValue` does not always build a tuple. It
Georg Brandl116aa622007-08-15 14:28:22 +0000773builds a tuple only if its format string contains two or more format units. If
774the format string is empty, it returns ``None``; if it contains exactly one
775format unit, it returns whatever object is described by that format unit. To
776force it to return a tuple of size 0 or one, parenthesize the format string.
777
778Examples (to the left the call, to the right the resulting Python value)::
779
780 Py_BuildValue("") None
781 Py_BuildValue("i", 123) 123
782 Py_BuildValue("iii", 123, 456, 789) (123, 456, 789)
783 Py_BuildValue("s", "hello") 'hello'
784 Py_BuildValue("y", "hello") b'hello'
785 Py_BuildValue("ss", "hello", "world") ('hello', 'world')
786 Py_BuildValue("s#", "hello", 4) 'hell'
787 Py_BuildValue("y#", "hello", 4) b'hell'
788 Py_BuildValue("()") ()
789 Py_BuildValue("(i)", 123) (123,)
790 Py_BuildValue("(ii)", 123, 456) (123, 456)
791 Py_BuildValue("(i,i)", 123, 456) (123, 456)
792 Py_BuildValue("[i,i]", 123, 456) [123, 456]
793 Py_BuildValue("{s:i,s:i}",
794 "abc", 123, "def", 456) {'abc': 123, 'def': 456}
795 Py_BuildValue("((ii)(ii)) (ii)",
796 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))
797
798
799.. _refcounts:
800
801Reference Counts
802================
803
804In languages like C or C++, the programmer is responsible for dynamic allocation
805and deallocation of memory on the heap. In C, this is done using the functions
Georg Brandl60203b42010-10-06 10:11:56 +0000806:c:func:`malloc` and :c:func:`free`. In C++, the operators ``new`` and
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000807``delete`` are used with essentially the same meaning and we'll restrict
Georg Brandl116aa622007-08-15 14:28:22 +0000808the following discussion to the C case.
809
Georg Brandl60203b42010-10-06 10:11:56 +0000810Every block of memory allocated with :c:func:`malloc` should eventually be
811returned to the pool of available memory by exactly one call to :c:func:`free`.
812It is important to call :c:func:`free` at the right time. If a block's address
813is forgotten but :c:func:`free` is not called for it, the memory it occupies
Georg Brandl116aa622007-08-15 14:28:22 +0000814cannot be reused until the program terminates. This is called a :dfn:`memory
Georg Brandl60203b42010-10-06 10:11:56 +0000815leak`. On the other hand, if a program calls :c:func:`free` for a block and then
Georg Brandl116aa622007-08-15 14:28:22 +0000816continues to use the block, it creates a conflict with re-use of the block
Georg Brandl60203b42010-10-06 10:11:56 +0000817through another :c:func:`malloc` call. This is called :dfn:`using freed memory`.
Georg Brandl116aa622007-08-15 14:28:22 +0000818It has the same bad consequences as referencing uninitialized data --- core
819dumps, wrong results, mysterious crashes.
820
821Common causes of memory leaks are unusual paths through the code. For instance,
822a function may allocate a block of memory, do some calculation, and then free
823the block again. Now a change in the requirements for the function may add a
824test to the calculation that detects an error condition and can return
825prematurely from the function. It's easy to forget to free the allocated memory
826block when taking this premature exit, especially when it is added later to the
827code. Such leaks, once introduced, often go undetected for a long time: the
828error exit is taken only in a small fraction of all calls, and most modern
829machines have plenty of virtual memory, so the leak only becomes apparent in a
830long-running process that uses the leaking function frequently. Therefore, it's
831important to prevent leaks from happening by having a coding convention or
832strategy that minimizes this kind of errors.
833
Georg Brandl60203b42010-10-06 10:11:56 +0000834Since Python makes heavy use of :c:func:`malloc` and :c:func:`free`, it needs a
Georg Brandl116aa622007-08-15 14:28:22 +0000835strategy to avoid memory leaks as well as the use of freed memory. The chosen
836method is called :dfn:`reference counting`. The principle is simple: every
837object contains a counter, which is incremented when a reference to the object
838is stored somewhere, and which is decremented when a reference to it is deleted.
839When the counter reaches zero, the last reference to the object has been deleted
840and the object is freed.
841
842An alternative strategy is called :dfn:`automatic garbage collection`.
843(Sometimes, reference counting is also referred to as a garbage collection
844strategy, hence my use of "automatic" to distinguish the two.) The big
845advantage of automatic garbage collection is that the user doesn't need to call
Georg Brandl60203b42010-10-06 10:11:56 +0000846:c:func:`free` explicitly. (Another claimed advantage is an improvement in speed
Georg Brandl116aa622007-08-15 14:28:22 +0000847or memory usage --- this is no hard fact however.) The disadvantage is that for
848C, there is no truly portable automatic garbage collector, while reference
Georg Brandl60203b42010-10-06 10:11:56 +0000849counting can be implemented portably (as long as the functions :c:func:`malloc`
850and :c:func:`free` are available --- which the C Standard guarantees). Maybe some
Georg Brandl116aa622007-08-15 14:28:22 +0000851day a sufficiently portable automatic garbage collector will be available for C.
852Until then, we'll have to live with reference counts.
853
854While Python uses the traditional reference counting implementation, it also
855offers a cycle detector that works to detect reference cycles. This allows
856applications to not worry about creating direct or indirect circular references;
857these are the weakness of garbage collection implemented using only reference
858counting. Reference cycles consist of objects which contain (possibly indirect)
859references to themselves, so that each object in the cycle has a reference count
860which is non-zero. Typical reference counting implementations are not able to
861reclaim the memory belonging to any objects in a reference cycle, or referenced
862from the objects in the cycle, even though there are no further references to
863the cycle itself.
864
Georg Brandla4c8c472014-10-31 10:38:49 +0100865The cycle detector is able to detect garbage cycles and can reclaim them.
866The :mod:`gc` module exposes a way to run the detector (the
Serhiy Storchaka0b68a2d2013-10-09 13:26:17 +0300867:func:`~gc.collect` function), as well as configuration
Georg Brandl116aa622007-08-15 14:28:22 +0000868interfaces and the ability to disable the detector at runtime. The cycle
869detector is considered an optional component; though it is included by default,
870it can be disabled at build time using the :option:`--without-cycle-gc` option
Georg Brandlf6945182008-02-01 11:56:49 +0000871to the :program:`configure` script on Unix platforms (including Mac OS X). If
872the cycle detector is disabled in this way, the :mod:`gc` module will not be
873available.
Georg Brandl116aa622007-08-15 14:28:22 +0000874
875
876.. _refcountsinpython:
877
878Reference Counting in Python
879----------------------------
880
881There are two macros, ``Py_INCREF(x)`` and ``Py_DECREF(x)``, which handle the
Georg Brandl60203b42010-10-06 10:11:56 +0000882incrementing and decrementing of the reference count. :c:func:`Py_DECREF` also
Georg Brandl116aa622007-08-15 14:28:22 +0000883frees the object when the count reaches zero. For flexibility, it doesn't call
Georg Brandl60203b42010-10-06 10:11:56 +0000884:c:func:`free` directly --- rather, it makes a call through a function pointer in
Georg Brandl116aa622007-08-15 14:28:22 +0000885the object's :dfn:`type object`. For this purpose (and others), every object
886also contains a pointer to its type object.
887
888The big question now remains: when to use ``Py_INCREF(x)`` and ``Py_DECREF(x)``?
889Let's first introduce some terms. Nobody "owns" an object; however, you can
890:dfn:`own a reference` to an object. An object's reference count is now defined
891as the number of owned references to it. The owner of a reference is
Georg Brandl60203b42010-10-06 10:11:56 +0000892responsible for calling :c:func:`Py_DECREF` when the reference is no longer
Georg Brandl116aa622007-08-15 14:28:22 +0000893needed. Ownership of a reference can be transferred. There are three ways to
Georg Brandl60203b42010-10-06 10:11:56 +0000894dispose of an owned reference: pass it on, store it, or call :c:func:`Py_DECREF`.
Georg Brandl116aa622007-08-15 14:28:22 +0000895Forgetting to dispose of an owned reference creates a memory leak.
896
897It is also possible to :dfn:`borrow` [#]_ a reference to an object. The
Georg Brandl60203b42010-10-06 10:11:56 +0000898borrower of a reference should not call :c:func:`Py_DECREF`. The borrower must
Georg Brandl116aa622007-08-15 14:28:22 +0000899not hold on to the object longer than the owner from which it was borrowed.
900Using a borrowed reference after the owner has disposed of it risks using freed
901memory and should be avoided completely. [#]_
902
903The advantage of borrowing over owning a reference is that you don't need to
904take care of disposing of the reference on all possible paths through the code
905--- in other words, with a borrowed reference you don't run the risk of leaking
Benjamin Peterson6ebe78f2008-12-21 00:06:59 +0000906when a premature exit is taken. The disadvantage of borrowing over owning is
Georg Brandl116aa622007-08-15 14:28:22 +0000907that there are some subtle situations where in seemingly correct code a borrowed
908reference can be used after the owner from which it was borrowed has in fact
909disposed of it.
910
911A borrowed reference can be changed into an owned reference by calling
Georg Brandl60203b42010-10-06 10:11:56 +0000912:c:func:`Py_INCREF`. This does not affect the status of the owner from which the
Georg Brandl116aa622007-08-15 14:28:22 +0000913reference was borrowed --- it creates a new owned reference, and gives full
914owner responsibilities (the new owner must dispose of the reference properly, as
915well as the previous owner).
916
917
918.. _ownershiprules:
919
920Ownership Rules
921---------------
922
923Whenever an object reference is passed into or out of a function, it is part of
924the function's interface specification whether ownership is transferred with the
925reference or not.
926
927Most functions that return a reference to an object pass on ownership with the
928reference. In particular, all functions whose function it is to create a new
Georg Brandl60203b42010-10-06 10:11:56 +0000929object, such as :c:func:`PyLong_FromLong` and :c:func:`Py_BuildValue`, pass
Georg Brandl116aa622007-08-15 14:28:22 +0000930ownership to the receiver. Even if the object is not actually new, you still
931receive ownership of a new reference to that object. For instance,
Georg Brandl60203b42010-10-06 10:11:56 +0000932:c:func:`PyLong_FromLong` maintains a cache of popular values and can return a
Georg Brandl116aa622007-08-15 14:28:22 +0000933reference to a cached item.
934
935Many functions that extract objects from other objects also transfer ownership
Georg Brandl60203b42010-10-06 10:11:56 +0000936with the reference, for instance :c:func:`PyObject_GetAttrString`. The picture
Georg Brandl116aa622007-08-15 14:28:22 +0000937is less clear, here, however, since a few common routines are exceptions:
Georg Brandl60203b42010-10-06 10:11:56 +0000938:c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and
939:c:func:`PyDict_GetItemString` all return references that you borrow from the
Georg Brandl116aa622007-08-15 14:28:22 +0000940tuple, list or dictionary.
941
Georg Brandl60203b42010-10-06 10:11:56 +0000942The function :c:func:`PyImport_AddModule` also returns a borrowed reference, even
Georg Brandl116aa622007-08-15 14:28:22 +0000943though it may actually create the object it returns: this is possible because an
944owned reference to the object is stored in ``sys.modules``.
945
946When you pass an object reference into another function, in general, the
947function borrows the reference from you --- if it needs to store it, it will use
Georg Brandl60203b42010-10-06 10:11:56 +0000948:c:func:`Py_INCREF` to become an independent owner. There are exactly two
949important exceptions to this rule: :c:func:`PyTuple_SetItem` and
950:c:func:`PyList_SetItem`. These functions take over ownership of the item passed
951to them --- even if they fail! (Note that :c:func:`PyDict_SetItem` and friends
Georg Brandl116aa622007-08-15 14:28:22 +0000952don't take over ownership --- they are "normal.")
953
954When a C function is called from Python, it borrows references to its arguments
955from the caller. The caller owns a reference to the object, so the borrowed
956reference's lifetime is guaranteed until the function returns. Only when such a
957borrowed reference must be stored or passed on, it must be turned into an owned
Georg Brandl60203b42010-10-06 10:11:56 +0000958reference by calling :c:func:`Py_INCREF`.
Georg Brandl116aa622007-08-15 14:28:22 +0000959
960The object reference returned from a C function that is called from Python must
961be an owned reference --- ownership is transferred from the function to its
962caller.
963
964
965.. _thinice:
966
967Thin Ice
968--------
969
970There are a few situations where seemingly harmless use of a borrowed reference
971can lead to problems. These all have to do with implicit invocations of the
972interpreter, which can cause the owner of a reference to dispose of it.
973
Georg Brandl60203b42010-10-06 10:11:56 +0000974The first and most important case to know about is using :c:func:`Py_DECREF` on
Georg Brandl116aa622007-08-15 14:28:22 +0000975an unrelated object while borrowing a reference to a list item. For instance::
976
977 void
978 bug(PyObject *list)
979 {
980 PyObject *item = PyList_GetItem(list, 0);
981
Georg Brandl9914dd32007-12-02 23:08:39 +0000982 PyList_SetItem(list, 1, PyLong_FromLong(0L));
Georg Brandl116aa622007-08-15 14:28:22 +0000983 PyObject_Print(item, stdout, 0); /* BUG! */
984 }
985
986This function first borrows a reference to ``list[0]``, then replaces
987``list[1]`` with the value ``0``, and finally prints the borrowed reference.
988Looks harmless, right? But it's not!
989
Georg Brandl60203b42010-10-06 10:11:56 +0000990Let's follow the control flow into :c:func:`PyList_SetItem`. The list owns
Georg Brandl116aa622007-08-15 14:28:22 +0000991references to all its items, so when item 1 is replaced, it has to dispose of
992the original item 1. Now let's suppose the original item 1 was an instance of a
993user-defined class, and let's further suppose that the class defined a
994:meth:`__del__` method. If this class instance has a reference count of 1,
995disposing of it will call its :meth:`__del__` method.
996
997Since it is written in Python, the :meth:`__del__` method can execute arbitrary
998Python code. Could it perhaps do something to invalidate the reference to
Georg Brandl60203b42010-10-06 10:11:56 +0000999``item`` in :c:func:`bug`? You bet! Assuming that the list passed into
1000:c:func:`bug` is accessible to the :meth:`__del__` method, it could execute a
Georg Brandl116aa622007-08-15 14:28:22 +00001001statement to the effect of ``del list[0]``, and assuming this was the last
1002reference to that object, it would free the memory associated with it, thereby
1003invalidating ``item``.
1004
1005The solution, once you know the source of the problem, is easy: temporarily
1006increment the reference count. The correct version of the function reads::
1007
1008 void
1009 no_bug(PyObject *list)
1010 {
1011 PyObject *item = PyList_GetItem(list, 0);
1012
1013 Py_INCREF(item);
Georg Brandl9914dd32007-12-02 23:08:39 +00001014 PyList_SetItem(list, 1, PyLong_FromLong(0L));
Georg Brandl116aa622007-08-15 14:28:22 +00001015 PyObject_Print(item, stdout, 0);
1016 Py_DECREF(item);
1017 }
1018
1019This is a true story. An older version of Python contained variants of this bug
1020and someone spent a considerable amount of time in a C debugger to figure out
1021why his :meth:`__del__` methods would fail...
1022
1023The second case of problems with a borrowed reference is a variant involving
1024threads. Normally, multiple threads in the Python interpreter can't get in each
1025other's way, because there is a global lock protecting Python's entire object
1026space. However, it is possible to temporarily release this lock using the macro
Georg Brandl60203b42010-10-06 10:11:56 +00001027:c:macro:`Py_BEGIN_ALLOW_THREADS`, and to re-acquire it using
1028:c:macro:`Py_END_ALLOW_THREADS`. This is common around blocking I/O calls, to
Georg Brandl116aa622007-08-15 14:28:22 +00001029let other threads use the processor while waiting for the I/O to complete.
1030Obviously, the following function has the same problem as the previous one::
1031
1032 void
1033 bug(PyObject *list)
1034 {
1035 PyObject *item = PyList_GetItem(list, 0);
1036 Py_BEGIN_ALLOW_THREADS
1037 ...some blocking I/O call...
1038 Py_END_ALLOW_THREADS
1039 PyObject_Print(item, stdout, 0); /* BUG! */
1040 }
1041
1042
1043.. _nullpointers:
1044
1045NULL Pointers
1046-------------
1047
1048In general, functions that take object references as arguments do not expect you
1049to pass them *NULL* pointers, and will dump core (or cause later core dumps) if
1050you do so. Functions that return object references generally return *NULL* only
1051to indicate that an exception occurred. The reason for not testing for *NULL*
1052arguments is that functions often pass the objects they receive on to other
1053function --- if each function were to test for *NULL*, there would be a lot of
1054redundant tests and the code would run more slowly.
1055
1056It is better to test for *NULL* only at the "source:" when a pointer that may be
Georg Brandl60203b42010-10-06 10:11:56 +00001057*NULL* is received, for example, from :c:func:`malloc` or from a function that
Georg Brandl116aa622007-08-15 14:28:22 +00001058may raise an exception.
1059
Georg Brandl60203b42010-10-06 10:11:56 +00001060The macros :c:func:`Py_INCREF` and :c:func:`Py_DECREF` do not check for *NULL*
1061pointers --- however, their variants :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF`
Georg Brandl116aa622007-08-15 14:28:22 +00001062do.
1063
1064The macros for checking for a particular object type (``Pytype_Check()``) don't
1065check for *NULL* pointers --- again, there is much code that calls several of
1066these in a row to test an object against various different expected types, and
1067this would generate redundant tests. There are no variants with *NULL*
1068checking.
1069
1070The C function calling mechanism guarantees that the argument list passed to C
1071functions (``args`` in the examples) is never *NULL* --- in fact it guarantees
1072that it is always a tuple. [#]_
1073
1074It is a severe error to ever let a *NULL* pointer "escape" to the Python user.
1075
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001076.. Frank Stajano:
1077 A pedagogically buggy example, along the lines of the previous listing, would
1078 be helpful here -- showing in more concrete terms what sort of actions could
1079 cause the problem. I can't very well imagine it from the description.
Georg Brandl116aa622007-08-15 14:28:22 +00001080
1081
1082.. _cplusplus:
1083
1084Writing Extensions in C++
1085=========================
1086
1087It is possible to write extension modules in C++. Some restrictions apply. If
1088the main program (the Python interpreter) is compiled and linked by the C
1089compiler, global or static objects with constructors cannot be used. This is
1090not a problem if the main program is linked by the C++ compiler. Functions that
1091will be called by the Python interpreter (in particular, module initialization
1092functions) have to be declared using ``extern "C"``. It is unnecessary to
1093enclose the Python header files in ``extern "C" {...}`` --- they use this form
1094already if the symbol ``__cplusplus`` is defined (all recent C++ compilers
1095define this symbol).
1096
1097
Benjamin Petersonb173f782009-05-05 22:31:58 +00001098.. _using-capsules:
Georg Brandl116aa622007-08-15 14:28:22 +00001099
1100Providing a C API for an Extension Module
1101=========================================
1102
1103.. sectionauthor:: Konrad Hinsen <hinsen@cnrs-orleans.fr>
1104
1105
1106Many extension modules just provide new functions and types to be used from
1107Python, but sometimes the code in an extension module can be useful for other
1108extension modules. For example, an extension module could implement a type
1109"collection" which works like lists without order. Just like the standard Python
1110list type has a C API which permits extension modules to create and manipulate
1111lists, this new collection type should have a set of C functions for direct
1112manipulation from other extension modules.
1113
1114At first sight this seems easy: just write the functions (without declaring them
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001115``static``, of course), provide an appropriate header file, and document
Georg Brandl116aa622007-08-15 14:28:22 +00001116the C API. And in fact this would work if all extension modules were always
1117linked statically with the Python interpreter. When modules are used as shared
1118libraries, however, the symbols defined in one module may not be visible to
1119another module. The details of visibility depend on the operating system; some
1120systems use one global namespace for the Python interpreter and all extension
1121modules (Windows, for example), whereas others require an explicit list of
1122imported symbols at module link time (AIX is one example), or offer a choice of
1123different strategies (most Unices). And even if symbols are globally visible,
1124the module whose functions one wishes to call might not have been loaded yet!
1125
1126Portability therefore requires not to make any assumptions about symbol
1127visibility. This means that all symbols in extension modules should be declared
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001128``static``, except for the module's initialization function, in order to
Georg Brandl116aa622007-08-15 14:28:22 +00001129avoid name clashes with other extension modules (as discussed in section
1130:ref:`methodtable`). And it means that symbols that *should* be accessible from
1131other extension modules must be exported in a different way.
1132
1133Python provides a special mechanism to pass C-level information (pointers) from
Benjamin Petersonb173f782009-05-05 22:31:58 +00001134one extension module to another one: Capsules. A Capsule is a Python data type
Georg Brandl60203b42010-10-06 10:11:56 +00001135which stores a pointer (:c:type:`void \*`). Capsules can only be created and
Georg Brandl116aa622007-08-15 14:28:22 +00001136accessed via their C API, but they can be passed around like any other Python
1137object. In particular, they can be assigned to a name in an extension module's
1138namespace. Other extension modules can then import this module, retrieve the
Benjamin Petersonb173f782009-05-05 22:31:58 +00001139value of this name, and then retrieve the pointer from the Capsule.
Georg Brandl116aa622007-08-15 14:28:22 +00001140
Benjamin Petersonb173f782009-05-05 22:31:58 +00001141There are many ways in which Capsules can be used to export the C API of an
1142extension module. Each function could get its own Capsule, or all C API pointers
1143could be stored in an array whose address is published in a Capsule. And the
Georg Brandl116aa622007-08-15 14:28:22 +00001144various tasks of storing and retrieving the pointers can be distributed in
1145different ways between the module providing the code and the client modules.
1146
Benjamin Petersonb173f782009-05-05 22:31:58 +00001147Whichever method you choose, it's important to name your Capsules properly.
Georg Brandl60203b42010-10-06 10:11:56 +00001148The function :c:func:`PyCapsule_New` takes a name parameter
1149(:c:type:`const char \*`); you're permitted to pass in a *NULL* name, but
Benjamin Petersonb173f782009-05-05 22:31:58 +00001150we strongly encourage you to specify a name. Properly named Capsules provide
1151a degree of runtime type-safety; there is no feasible way to tell one unnamed
1152Capsule from another.
1153
1154In particular, Capsules used to expose C APIs should be given a name following
1155this convention::
1156
1157 modulename.attributename
1158
Georg Brandl60203b42010-10-06 10:11:56 +00001159The convenience function :c:func:`PyCapsule_Import` makes it easy to
Benjamin Petersonb173f782009-05-05 22:31:58 +00001160load a C API provided via a Capsule, but only if the Capsule's name
1161matches this convention. This behavior gives C API users a high degree
1162of certainty that the Capsule they load contains the correct C API.
1163
Georg Brandl116aa622007-08-15 14:28:22 +00001164The following example demonstrates an approach that puts most of the burden on
1165the writer of the exporting module, which is appropriate for commonly used
1166library modules. It stores all C API pointers (just one in the example!) in an
Georg Brandl60203b42010-10-06 10:11:56 +00001167array of :c:type:`void` pointers which becomes the value of a Capsule. The header
Georg Brandl116aa622007-08-15 14:28:22 +00001168file corresponding to the module provides a macro that takes care of importing
1169the module and retrieving its C API pointers; client modules only have to call
1170this macro before accessing the C API.
1171
1172The exporting module is a modification of the :mod:`spam` module from section
1173:ref:`extending-simpleexample`. The function :func:`spam.system` does not call
Georg Brandl60203b42010-10-06 10:11:56 +00001174the C library function :c:func:`system` directly, but a function
1175:c:func:`PySpam_System`, which would of course do something more complicated in
Georg Brandl116aa622007-08-15 14:28:22 +00001176reality (such as adding "spam" to every command). This function
Georg Brandl60203b42010-10-06 10:11:56 +00001177:c:func:`PySpam_System` is also exported to other extension modules.
Georg Brandl116aa622007-08-15 14:28:22 +00001178
Georg Brandl60203b42010-10-06 10:11:56 +00001179The function :c:func:`PySpam_System` is a plain C function, declared
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001180``static`` like everything else::
Georg Brandl116aa622007-08-15 14:28:22 +00001181
1182 static int
1183 PySpam_System(const char *command)
1184 {
1185 return system(command);
1186 }
1187
Georg Brandl60203b42010-10-06 10:11:56 +00001188The function :c:func:`spam_system` is modified in a trivial way::
Georg Brandl116aa622007-08-15 14:28:22 +00001189
1190 static PyObject *
1191 spam_system(PyObject *self, PyObject *args)
1192 {
1193 const char *command;
1194 int sts;
1195
1196 if (!PyArg_ParseTuple(args, "s", &command))
1197 return NULL;
1198 sts = PySpam_System(command);
Georg Brandlc877a7c2010-11-26 11:55:48 +00001199 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +00001200 }
1201
1202In the beginning of the module, right after the line ::
1203
1204 #include "Python.h"
1205
1206two more lines must be added::
1207
1208 #define SPAM_MODULE
1209 #include "spammodule.h"
1210
1211The ``#define`` is used to tell the header file that it is being included in the
1212exporting module, not a client module. Finally, the module's initialization
1213function must take care of initializing the C API pointer array::
1214
1215 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001216 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +00001217 {
1218 PyObject *m;
1219 static void *PySpam_API[PySpam_API_pointers];
1220 PyObject *c_api_object;
1221
Martin v. Löwis1a214512008-06-11 05:26:20 +00001222 m = PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +00001223 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001224 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001225
1226 /* Initialize the C API pointer array */
1227 PySpam_API[PySpam_System_NUM] = (void *)PySpam_System;
1228
Benjamin Petersonb173f782009-05-05 22:31:58 +00001229 /* Create a Capsule containing the API pointer array's address */
1230 c_api_object = PyCapsule_New((void *)PySpam_API, "spam._C_API", NULL);
Georg Brandl116aa622007-08-15 14:28:22 +00001231
1232 if (c_api_object != NULL)
1233 PyModule_AddObject(m, "_C_API", c_api_object);
Martin v. Löwis1a214512008-06-11 05:26:20 +00001234 return m;
Georg Brandl116aa622007-08-15 14:28:22 +00001235 }
1236
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001237Note that ``PySpam_API`` is declared ``static``; otherwise the pointer
Martin v. Löwis1a214512008-06-11 05:26:20 +00001238array would disappear when :func:`PyInit_spam` terminates!
Georg Brandl116aa622007-08-15 14:28:22 +00001239
1240The bulk of the work is in the header file :file:`spammodule.h`, which looks
1241like this::
1242
1243 #ifndef Py_SPAMMODULE_H
1244 #define Py_SPAMMODULE_H
1245 #ifdef __cplusplus
1246 extern "C" {
1247 #endif
1248
1249 /* Header file for spammodule */
1250
1251 /* C API functions */
1252 #define PySpam_System_NUM 0
1253 #define PySpam_System_RETURN int
1254 #define PySpam_System_PROTO (const char *command)
1255
1256 /* Total number of C API pointers */
1257 #define PySpam_API_pointers 1
1258
1259
1260 #ifdef SPAM_MODULE
1261 /* This section is used when compiling spammodule.c */
1262
1263 static PySpam_System_RETURN PySpam_System PySpam_System_PROTO;
1264
1265 #else
1266 /* This section is used in modules that use spammodule's API */
1267
1268 static void **PySpam_API;
1269
1270 #define PySpam_System \
1271 (*(PySpam_System_RETURN (*)PySpam_System_PROTO) PySpam_API[PySpam_System_NUM])
1272
Benjamin Petersonb173f782009-05-05 22:31:58 +00001273 /* Return -1 on error, 0 on success.
1274 * PyCapsule_Import will set an exception if there's an error.
1275 */
Georg Brandl116aa622007-08-15 14:28:22 +00001276 static int
1277 import_spam(void)
1278 {
Benjamin Petersonb173f782009-05-05 22:31:58 +00001279 PySpam_API = (void **)PyCapsule_Import("spam._C_API", 0);
1280 return (PySpam_API != NULL) ? 0 : -1;
Georg Brandl116aa622007-08-15 14:28:22 +00001281 }
1282
1283 #endif
1284
1285 #ifdef __cplusplus
1286 }
1287 #endif
1288
1289 #endif /* !defined(Py_SPAMMODULE_H) */
1290
1291All that a client module must do in order to have access to the function
Georg Brandl60203b42010-10-06 10:11:56 +00001292:c:func:`PySpam_System` is to call the function (or rather macro)
1293:c:func:`import_spam` in its initialization function::
Georg Brandl116aa622007-08-15 14:28:22 +00001294
1295 PyMODINIT_FUNC
Benjamin Peterson7c435242009-03-24 01:40:39 +00001296 PyInit_client(void)
Georg Brandl116aa622007-08-15 14:28:22 +00001297 {
1298 PyObject *m;
1299
Georg Brandl21151762009-03-31 15:52:41 +00001300 m = PyModule_Create(&clientmodule);
Georg Brandl116aa622007-08-15 14:28:22 +00001301 if (m == NULL)
Georg Brandl21151762009-03-31 15:52:41 +00001302 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001303 if (import_spam() < 0)
Georg Brandl21151762009-03-31 15:52:41 +00001304 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001305 /* additional initialization can happen here */
Georg Brandl21151762009-03-31 15:52:41 +00001306 return m;
Georg Brandl116aa622007-08-15 14:28:22 +00001307 }
1308
1309The main disadvantage of this approach is that the file :file:`spammodule.h` is
1310rather complicated. However, the basic structure is the same for each function
1311that is exported, so it has to be learned only once.
1312
Benjamin Petersonb173f782009-05-05 22:31:58 +00001313Finally it should be mentioned that Capsules offer additional functionality,
Georg Brandl116aa622007-08-15 14:28:22 +00001314which is especially useful for memory allocation and deallocation of the pointer
Benjamin Petersonb173f782009-05-05 22:31:58 +00001315stored in a Capsule. The details are described in the Python/C API Reference
1316Manual in the section :ref:`capsules` and in the implementation of Capsules (files
1317:file:`Include/pycapsule.h` and :file:`Objects/pycapsule.c` in the Python source
Georg Brandl116aa622007-08-15 14:28:22 +00001318code distribution).
1319
1320.. rubric:: Footnotes
1321
1322.. [#] An interface for this function already exists in the standard module :mod:`os`
1323 --- it was chosen as a simple and straightforward example.
1324
1325.. [#] The metaphor of "borrowing" a reference is not completely correct: the owner
1326 still has a copy of the reference.
1327
1328.. [#] Checking that the reference count is at least 1 **does not work** --- the
1329 reference count itself could be in freed memory and may thus be reused for
1330 another object!
1331
1332.. [#] These guarantees don't hold when you use the "old" style calling convention ---
1333 this is still found in much existing code.
1334