blob: 12868d3f744f89c929f62fff3883138912e398e8 [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
Brett Cannon7f98a6c2009-09-17 03:39:33 +000023Do note that if your use case is calling C library functions or system calls,
24you should consider using the :mod:`ctypes` module rather than writing custom
25C code. Not only does :mod:`ctypes` let you write Python code to interface
26with C code, but it is more portable between implementations of Python than
27writing and compiling an extension module which typically ties you to CPython.
28
29
Georg Brandl116aa622007-08-15 14:28:22 +000030
31.. _extending-simpleexample:
32
33A Simple Example
34================
35
36Let's create an extension module called ``spam`` (the favorite food of Monty
37Python fans...) and let's say we want to create a Python interface to the C
Georg Brandl60203b42010-10-06 10:11:56 +000038library function :c:func:`system`. [#]_ This function takes a null-terminated
Georg Brandl116aa622007-08-15 14:28:22 +000039character string as argument and returns an integer. We want this function to
40be callable from Python as follows::
41
42 >>> import spam
43 >>> status = spam.system("ls -l")
44
45Begin by creating a file :file:`spammodule.c`. (Historically, if a module is
46called ``spam``, the C file containing its implementation is called
47:file:`spammodule.c`; if the module name is very long, like ``spammify``, the
48module name can be just :file:`spammify.c`.)
49
50The first line of our file can be::
51
52 #include <Python.h>
53
54which pulls in the Python API (you can add a comment describing the purpose of
55the module and a copyright notice if you like).
56
Georg Brandle720c0a2009-04-27 16:20:50 +000057.. note::
Georg Brandl116aa622007-08-15 14:28:22 +000058
59 Since Python may define some pre-processor definitions which affect the standard
60 headers on some systems, you *must* include :file:`Python.h` before any standard
61 headers are included.
62
63All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` or
64``PY``, except those defined in standard header files. For convenience, and
65since they are used extensively by the Python interpreter, ``"Python.h"``
66includes a few standard header files: ``<stdio.h>``, ``<string.h>``,
67``<errno.h>``, and ``<stdlib.h>``. If the latter header file does not exist on
Georg Brandl60203b42010-10-06 10:11:56 +000068your system, it declares the functions :c:func:`malloc`, :c:func:`free` and
69:c:func:`realloc` directly.
Georg Brandl116aa622007-08-15 14:28:22 +000070
71The next thing we add to our module file is the C function that will be called
72when the Python expression ``spam.system(string)`` is evaluated (we'll see
73shortly how it ends up being called)::
74
75 static PyObject *
76 spam_system(PyObject *self, PyObject *args)
77 {
78 const char *command;
79 int sts;
80
81 if (!PyArg_ParseTuple(args, "s", &command))
82 return NULL;
83 sts = system(command);
Georg Brandlc877a7c2010-11-26 11:55:48 +000084 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +000085 }
86
87There is a straightforward translation from the argument list in Python (for
88example, the single expression ``"ls -l"``) to the arguments passed to the C
89function. The C function always has two arguments, conventionally named *self*
90and *args*.
91
Georg Brandl21dc5ba2009-07-11 10:43:08 +000092The *self* argument points to the module object for module-level functions;
93for a method it would point to the object instance.
Georg Brandl116aa622007-08-15 14:28:22 +000094
95The *args* argument will be a pointer to a Python tuple object containing the
96arguments. Each item of the tuple corresponds to an argument in the call's
97argument list. The arguments are Python objects --- in order to do anything
98with them in our C function we have to convert them to C values. The function
Georg Brandl60203b42010-10-06 10:11:56 +000099:c:func:`PyArg_ParseTuple` in the Python API checks the argument types and
Georg Brandl116aa622007-08-15 14:28:22 +0000100converts them to C values. It uses a template string to determine the required
101types of the arguments as well as the types of the C variables into which to
102store the converted values. More about this later.
103
Georg Brandl60203b42010-10-06 10:11:56 +0000104:c:func:`PyArg_ParseTuple` returns true (nonzero) if all arguments have the right
Georg Brandl116aa622007-08-15 14:28:22 +0000105type and its components have been stored in the variables whose addresses are
106passed. It returns false (zero) if an invalid argument list was passed. In the
107latter case it also raises an appropriate exception so the calling function can
108return *NULL* immediately (as we saw in the example).
109
110
111.. _extending-errors:
112
113Intermezzo: Errors and Exceptions
114=================================
115
116An important convention throughout the Python interpreter is the following: when
117a function fails, it should set an exception condition and return an error value
118(usually a *NULL* pointer). Exceptions are stored in a static global variable
119inside the interpreter; if this variable is *NULL* no exception has occurred. A
120second global variable stores the "associated value" of the exception (the
121second argument to :keyword:`raise`). A third variable contains the stack
122traceback in case the error originated in Python code. These three variables
123are the C equivalents of the result in Python of :meth:`sys.exc_info` (see the
124section on module :mod:`sys` in the Python Library Reference). It is important
125to know about them to understand how errors are passed around.
126
127The Python API defines a number of functions to set various types of exceptions.
128
Georg Brandl60203b42010-10-06 10:11:56 +0000129The most common one is :c:func:`PyErr_SetString`. Its arguments are an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000130object and a C string. The exception object is usually a predefined object like
Georg Brandl60203b42010-10-06 10:11:56 +0000131:c:data:`PyExc_ZeroDivisionError`. The C string indicates the cause of the error
Georg Brandl116aa622007-08-15 14:28:22 +0000132and is converted to a Python string object and stored as the "associated value"
133of the exception.
134
Georg Brandl60203b42010-10-06 10:11:56 +0000135Another useful function is :c:func:`PyErr_SetFromErrno`, which only takes an
Georg Brandl116aa622007-08-15 14:28:22 +0000136exception argument and constructs the associated value by inspection of the
Georg Brandl60203b42010-10-06 10:11:56 +0000137global variable :c:data:`errno`. The most general function is
138:c:func:`PyErr_SetObject`, which takes two object arguments, the exception and
139its associated value. You don't need to :c:func:`Py_INCREF` the objects passed
Georg Brandl116aa622007-08-15 14:28:22 +0000140to any of these functions.
141
142You can test non-destructively whether an exception has been set with
Georg Brandl60203b42010-10-06 10:11:56 +0000143:c:func:`PyErr_Occurred`. This returns the current exception object, or *NULL*
Georg Brandl116aa622007-08-15 14:28:22 +0000144if no exception has occurred. You normally don't need to call
Georg Brandl60203b42010-10-06 10:11:56 +0000145:c:func:`PyErr_Occurred` to see whether an error occurred in a function call,
Georg Brandl116aa622007-08-15 14:28:22 +0000146since you should be able to tell from the return value.
147
148When a function *f* that calls another function *g* detects that the latter
149fails, *f* should itself return an error value (usually *NULL* or ``-1``). It
Georg Brandl60203b42010-10-06 10:11:56 +0000150should *not* call one of the :c:func:`PyErr_\*` functions --- one has already
Georg Brandl116aa622007-08-15 14:28:22 +0000151been called by *g*. *f*'s caller is then supposed to also return an error
Georg Brandl60203b42010-10-06 10:11:56 +0000152indication to *its* caller, again *without* calling :c:func:`PyErr_\*`, and so on
Georg Brandl116aa622007-08-15 14:28:22 +0000153--- the most detailed cause of the error was already reported by the function
154that first detected it. Once the error reaches the Python interpreter's main
155loop, this aborts the currently executing Python code and tries to find an
156exception handler specified by the Python programmer.
157
158(There are situations where a module can actually give a more detailed error
Georg Brandl60203b42010-10-06 10:11:56 +0000159message by calling another :c:func:`PyErr_\*` function, and in such cases it is
Georg Brandl116aa622007-08-15 14:28:22 +0000160fine to do so. As a general rule, however, this is not necessary, and can cause
161information about the cause of the error to be lost: most operations can fail
162for a variety of reasons.)
163
164To ignore an exception set by a function call that failed, the exception
Georg Brandl682d7e02010-10-06 10:26:05 +0000165condition must be cleared explicitly by calling :c:func:`PyErr_Clear`. The only
Georg Brandl60203b42010-10-06 10:11:56 +0000166time C code should call :c:func:`PyErr_Clear` is if it doesn't want to pass the
Georg Brandl116aa622007-08-15 14:28:22 +0000167error on to the interpreter but wants to handle it completely by itself
168(possibly by trying something else, or pretending nothing went wrong).
169
Georg Brandl60203b42010-10-06 10:11:56 +0000170Every failing :c:func:`malloc` call must be turned into an exception --- the
171direct caller of :c:func:`malloc` (or :c:func:`realloc`) must call
172:c:func:`PyErr_NoMemory` and return a failure indicator itself. All the
173object-creating functions (for example, :c:func:`PyLong_FromLong`) already do
174this, so this note is only relevant to those who call :c:func:`malloc` directly.
Georg Brandl116aa622007-08-15 14:28:22 +0000175
Georg Brandl60203b42010-10-06 10:11:56 +0000176Also note that, with the important exception of :c:func:`PyArg_ParseTuple` and
Georg Brandl116aa622007-08-15 14:28:22 +0000177friends, functions that return an integer status usually return a positive value
178or zero for success and ``-1`` for failure, like Unix system calls.
179
Georg Brandl60203b42010-10-06 10:11:56 +0000180Finally, be careful to clean up garbage (by making :c:func:`Py_XDECREF` or
181:c:func:`Py_DECREF` calls for objects you have already created) when you return
Georg Brandl116aa622007-08-15 14:28:22 +0000182an error indicator!
183
184The choice of which exception to raise is entirely yours. There are predeclared
185C objects corresponding to all built-in Python exceptions, such as
Georg Brandl60203b42010-10-06 10:11:56 +0000186:c:data:`PyExc_ZeroDivisionError`, which you can use directly. Of course, you
187should choose exceptions wisely --- don't use :c:data:`PyExc_TypeError` to mean
188that a file couldn't be opened (that should probably be :c:data:`PyExc_IOError`).
189If something's wrong with the argument list, the :c:func:`PyArg_ParseTuple`
190function usually raises :c:data:`PyExc_TypeError`. If you have an argument whose
Georg Brandl116aa622007-08-15 14:28:22 +0000191value must be in a particular range or must satisfy other conditions,
Georg Brandl60203b42010-10-06 10:11:56 +0000192:c:data:`PyExc_ValueError` is appropriate.
Georg Brandl116aa622007-08-15 14:28:22 +0000193
194You can also define a new exception that is unique to your module. For this, you
195usually declare a static object variable at the beginning of your file::
196
197 static PyObject *SpamError;
198
Georg Brandl60203b42010-10-06 10:11:56 +0000199and initialize it in your module's initialization function (:c:func:`PyInit_spam`)
Georg Brandl116aa622007-08-15 14:28:22 +0000200with an exception object (leaving out the error checking for now)::
201
202 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000203 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000204 {
205 PyObject *m;
206
Martin v. Löwis1a214512008-06-11 05:26:20 +0000207 m = PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000208 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000209 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000210
211 SpamError = PyErr_NewException("spam.error", NULL, NULL);
212 Py_INCREF(SpamError);
213 PyModule_AddObject(m, "error", SpamError);
Martin v. Löwis1a214512008-06-11 05:26:20 +0000214 return m;
Georg Brandl116aa622007-08-15 14:28:22 +0000215 }
216
217Note that the Python name for the exception object is :exc:`spam.error`. The
Georg Brandl60203b42010-10-06 10:11:56 +0000218:c:func:`PyErr_NewException` function may create a class with the base class
Georg Brandl116aa622007-08-15 14:28:22 +0000219being :exc:`Exception` (unless another class is passed in instead of *NULL*),
220described in :ref:`bltin-exceptions`.
221
Georg Brandl60203b42010-10-06 10:11:56 +0000222Note also that the :c:data:`SpamError` variable retains a reference to the newly
Georg Brandl116aa622007-08-15 14:28:22 +0000223created exception class; this is intentional! Since the exception could be
224removed from the module by external code, an owned reference to the class is
Georg Brandl60203b42010-10-06 10:11:56 +0000225needed to ensure that it will not be discarded, causing :c:data:`SpamError` to
Georg Brandl116aa622007-08-15 14:28:22 +0000226become a dangling pointer. Should it become a dangling pointer, C code which
227raises the exception could cause a core dump or other unintended side effects.
228
Georg Brandl9c491c92010-08-02 20:21:21 +0000229We discuss the use of ``PyMODINIT_FUNC`` as a function return type later in this
Georg Brandl116aa622007-08-15 14:28:22 +0000230sample.
231
Georg Brandl9c491c92010-08-02 20:21:21 +0000232The :exc:`spam.error` exception can be raised in your extension module using a
Georg Brandl60203b42010-10-06 10:11:56 +0000233call to :c:func:`PyErr_SetString` as shown below::
Georg Brandl9c491c92010-08-02 20:21:21 +0000234
235 static PyObject *
236 spam_system(PyObject *self, PyObject *args)
237 {
238 const char *command;
239 int sts;
240
241 if (!PyArg_ParseTuple(args, "s", &command))
242 return NULL;
243 sts = system(command);
244 if (sts < 0) {
245 PyErr_SetString(SpamError, "System command failed");
246 return NULL;
247 }
248 return PyLong_FromLong(sts);
249 }
250
Georg Brandl116aa622007-08-15 14:28:22 +0000251
252.. _backtoexample:
253
254Back to the Example
255===================
256
257Going back to our example function, you should now be able to understand this
258statement::
259
260 if (!PyArg_ParseTuple(args, "s", &command))
261 return NULL;
262
263It returns *NULL* (the error indicator for functions returning object pointers)
264if an error is detected in the argument list, relying on the exception set by
Georg Brandl60203b42010-10-06 10:11:56 +0000265:c:func:`PyArg_ParseTuple`. Otherwise the string value of the argument has been
266copied to the local variable :c:data:`command`. This is a pointer assignment and
Georg Brandl116aa622007-08-15 14:28:22 +0000267you are not supposed to modify the string to which it points (so in Standard C,
Georg Brandl60203b42010-10-06 10:11:56 +0000268the variable :c:data:`command` should properly be declared as ``const char
Georg Brandl116aa622007-08-15 14:28:22 +0000269*command``).
270
Georg Brandl60203b42010-10-06 10:11:56 +0000271The next statement is a call to the Unix function :c:func:`system`, passing it
272the string we just got from :c:func:`PyArg_ParseTuple`::
Georg Brandl116aa622007-08-15 14:28:22 +0000273
274 sts = system(command);
275
Georg Brandl60203b42010-10-06 10:11:56 +0000276Our :func:`spam.system` function must return the value of :c:data:`sts` as a
Georg Brandlc877a7c2010-11-26 11:55:48 +0000277Python object. This is done using the function :c:func:`PyLong_FromLong`. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000278
Georg Brandlc877a7c2010-11-26 11:55:48 +0000279 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +0000280
281In this case, it will return an integer object. (Yes, even integers are objects
282on the heap in Python!)
283
284If you have a C function that returns no useful argument (a function returning
Georg Brandl60203b42010-10-06 10:11:56 +0000285:c:type:`void`), the corresponding Python function must return ``None``. You
286need this idiom to do so (which is implemented by the :c:macro:`Py_RETURN_NONE`
Georg Brandl116aa622007-08-15 14:28:22 +0000287macro)::
288
289 Py_INCREF(Py_None);
290 return Py_None;
291
Georg Brandl60203b42010-10-06 10:11:56 +0000292:c:data:`Py_None` is the C name for the special Python object ``None``. It is a
Georg Brandl116aa622007-08-15 14:28:22 +0000293genuine Python object rather than a *NULL* pointer, which means "error" in most
294contexts, as we have seen.
295
296
297.. _methodtable:
298
299The Module's Method Table and Initialization Function
300=====================================================
301
Georg Brandl60203b42010-10-06 10:11:56 +0000302I promised to show how :c:func:`spam_system` is called from Python programs.
Georg Brandl116aa622007-08-15 14:28:22 +0000303First, we need to list its name and address in a "method table"::
304
305 static PyMethodDef SpamMethods[] = {
306 ...
307 {"system", spam_system, METH_VARARGS,
308 "Execute a shell command."},
309 ...
310 {NULL, NULL, 0, NULL} /* Sentinel */
311 };
312
313Note the third entry (``METH_VARARGS``). This is a flag telling the interpreter
314the calling convention to be used for the C function. It should normally always
315be ``METH_VARARGS`` or ``METH_VARARGS | METH_KEYWORDS``; a value of ``0`` means
Georg Brandl60203b42010-10-06 10:11:56 +0000316that an obsolete variant of :c:func:`PyArg_ParseTuple` is used.
Georg Brandl116aa622007-08-15 14:28:22 +0000317
318When using only ``METH_VARARGS``, the function should expect the Python-level
319parameters to be passed in as a tuple acceptable for parsing via
Georg Brandl60203b42010-10-06 10:11:56 +0000320:c:func:`PyArg_ParseTuple`; more information on this function is provided below.
Georg Brandl116aa622007-08-15 14:28:22 +0000321
322The :const:`METH_KEYWORDS` bit may be set in the third field if keyword
323arguments should be passed to the function. In this case, the C function should
Eli Bendersky44fb6132012-02-11 10:27:31 +0200324accept a third ``PyObject *`` parameter which will be a dictionary of keywords.
Georg Brandl60203b42010-10-06 10:11:56 +0000325Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments to such a
Georg Brandl116aa622007-08-15 14:28:22 +0000326function.
327
Martin v. Löwis1a214512008-06-11 05:26:20 +0000328The method table must be referenced in the module definition structure::
329
Benjamin Peterson3851d122008-10-20 21:04:06 +0000330 static struct PyModuleDef spammodule = {
Martin v. Löwis1a214512008-06-11 05:26:20 +0000331 PyModuleDef_HEAD_INIT,
332 "spam", /* name of module */
333 spam_doc, /* module documentation, may be NULL */
334 -1, /* size of per-interpreter state of the module,
335 or -1 if the module keeps state in global variables. */
336 SpamMethods
337 };
338
339This structure, in turn, must be passed to the interpreter in the module's
Georg Brandl116aa622007-08-15 14:28:22 +0000340initialization function. The initialization function must be named
Georg Brandl60203b42010-10-06 10:11:56 +0000341:c:func:`PyInit_name`, where *name* is the name of the module, and should be the
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000342only non-\ ``static`` item defined in the module file::
Georg Brandl116aa622007-08-15 14:28:22 +0000343
344 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000345 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000346 {
Martin v. Löwis1a214512008-06-11 05:26:20 +0000347 return PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000348 }
349
Benjamin Peterson71e30a02008-12-24 16:27:25 +0000350Note that PyMODINIT_FUNC declares the function as ``PyObject *`` return type,
351declares any special linkage declarations required by the platform, and for C++
Georg Brandl116aa622007-08-15 14:28:22 +0000352declares the function as ``extern "C"``.
353
354When the Python program imports module :mod:`spam` for the first time,
Georg Brandl60203b42010-10-06 10:11:56 +0000355:c:func:`PyInit_spam` is called. (See below for comments about embedding Python.)
356It calls :c:func:`PyModule_Create`, which returns a module object, and
Georg Brandl116aa622007-08-15 14:28:22 +0000357inserts built-in function objects into the newly created module based upon the
Georg Brandl60203b42010-10-06 10:11:56 +0000358table (an array of :c:type:`PyMethodDef` structures) found in the module definition.
359:c:func:`PyModule_Create` returns a pointer to the module object
Martin v. Löwis1a214512008-06-11 05:26:20 +0000360that it creates. It may abort with a fatal error for
Georg Brandl116aa622007-08-15 14:28:22 +0000361certain errors, or return *NULL* if the module could not be initialized
Martin v. Löwis1a214512008-06-11 05:26:20 +0000362satisfactorily. The init function must return the module object to its caller,
363so that it then gets inserted into ``sys.modules``.
Georg Brandl116aa622007-08-15 14:28:22 +0000364
Georg Brandl60203b42010-10-06 10:11:56 +0000365When embedding Python, the :c:func:`PyInit_spam` function is not called
366automatically unless there's an entry in the :c:data:`PyImport_Inittab` table.
367To add the module to the initialization table, use :c:func:`PyImport_AppendInittab`,
Martin v. Löwis1a214512008-06-11 05:26:20 +0000368optionally followed by an import of the module::
Georg Brandl116aa622007-08-15 14:28:22 +0000369
370 int
371 main(int argc, char *argv[])
372 {
Victor Stinner25e014b2014-08-01 12:28:49 +0200373 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
374 if (program == NULL) {
375 fprintf(stderr, "Fatal error: cannot decode argv[0]\n");
376 exit(1);
377 }
378
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000379 /* Add a built-in module, before Py_Initialize */
Martin v. Löwis1a214512008-06-11 05:26:20 +0000380 PyImport_AppendInittab("spam", PyInit_spam);
381
Georg Brandl116aa622007-08-15 14:28:22 +0000382 /* Pass argv[0] to the Python interpreter */
Victor Stinner25e014b2014-08-01 12:28:49 +0200383 Py_SetProgramName(program);
Georg Brandl116aa622007-08-15 14:28:22 +0000384
385 /* Initialize the Python interpreter. Required. */
386 Py_Initialize();
387
Martin v. Löwis1a214512008-06-11 05:26:20 +0000388 /* Optionally import the module; alternatively,
389 import can be deferred until the embedded script
390 imports it. */
391 PyImport_ImportModule("spam");
Georg Brandl116aa622007-08-15 14:28:22 +0000392
Georg Brandl49c6fc92013-10-06 13:14:10 +0200393 ...
394
Victor Stinner25e014b2014-08-01 12:28:49 +0200395 PyMem_RawFree(program);
396 return 0;
397 }
398
Georg Brandl116aa622007-08-15 14:28:22 +0000399.. note::
400
401 Removing entries from ``sys.modules`` or importing compiled modules into
Georg Brandl60203b42010-10-06 10:11:56 +0000402 multiple interpreters within a process (or following a :c:func:`fork` without an
403 intervening :c:func:`exec`) can create problems for some extension modules.
Georg Brandl116aa622007-08-15 14:28:22 +0000404 Extension module authors should exercise caution when initializing internal data
405 structures.
406
407A more substantial example module is included in the Python source distribution
408as :file:`Modules/xxmodule.c`. This file may be used as a template or simply
Benjamin Peterson2614cda2010-03-21 22:36:19 +0000409read as an example.
Georg Brandl116aa622007-08-15 14:28:22 +0000410
411
412.. _compilation:
413
414Compilation and Linkage
415=======================
416
417There are two more things to do before you can use your new extension: compiling
418and linking it with the Python system. If you use dynamic loading, the details
419may depend on the style of dynamic loading your system uses; see the chapters
420about building extension modules (chapter :ref:`building`) and additional
421information that pertains only to building on Windows (chapter
422:ref:`building-on-windows`) for more information about this.
423
424If you can't use dynamic loading, or if you want to make your module a permanent
425part of the Python interpreter, you will have to change the configuration setup
426and rebuild the interpreter. Luckily, this is very simple on Unix: just place
427your file (:file:`spammodule.c` for example) in the :file:`Modules/` directory
428of an unpacked source distribution, add a line to the file
429:file:`Modules/Setup.local` describing your file::
430
431 spam spammodule.o
432
433and rebuild the interpreter by running :program:`make` in the toplevel
434directory. You can also run :program:`make` in the :file:`Modules/`
435subdirectory, but then you must first rebuild :file:`Makefile` there by running
436':program:`make` Makefile'. (This is necessary each time you change the
437:file:`Setup` file.)
438
439If your module requires additional libraries to link with, these can be listed
440on the line in the configuration file as well, for instance::
441
442 spam spammodule.o -lX11
443
444
445.. _callingpython:
446
447Calling Python Functions from C
448===============================
449
450So far we have concentrated on making C functions callable from Python. The
451reverse is also useful: calling Python functions from C. This is especially the
452case for libraries that support so-called "callback" functions. If a C
453interface makes use of callbacks, the equivalent Python often needs to provide a
454callback mechanism to the Python programmer; the implementation will require
455calling the Python callback functions from a C callback. Other uses are also
456imaginable.
457
458Fortunately, the Python interpreter is easily called recursively, and there is a
459standard interface to call a Python function. (I won't dwell on how to call the
460Python parser with a particular string as input --- if you're interested, have a
461look at the implementation of the :option:`-c` command line option in
Georg Brandl22291c52007-09-06 14:49:02 +0000462:file:`Modules/main.c` from the Python source code.)
Georg Brandl116aa622007-08-15 14:28:22 +0000463
464Calling a Python function is easy. First, the Python program must somehow pass
465you the Python function object. You should provide a function (or some other
466interface) to do this. When this function is called, save a pointer to the
Georg Brandl60203b42010-10-06 10:11:56 +0000467Python function object (be careful to :c:func:`Py_INCREF` it!) in a global
Georg Brandl116aa622007-08-15 14:28:22 +0000468variable --- or wherever you see fit. For example, the following function might
469be part of a module definition::
470
471 static PyObject *my_callback = NULL;
472
473 static PyObject *
474 my_set_callback(PyObject *dummy, PyObject *args)
475 {
476 PyObject *result = NULL;
477 PyObject *temp;
478
479 if (PyArg_ParseTuple(args, "O:set_callback", &temp)) {
480 if (!PyCallable_Check(temp)) {
481 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
482 return NULL;
483 }
484 Py_XINCREF(temp); /* Add a reference to new callback */
485 Py_XDECREF(my_callback); /* Dispose of previous callback */
486 my_callback = temp; /* Remember new callback */
487 /* Boilerplate to return "None" */
488 Py_INCREF(Py_None);
489 result = Py_None;
490 }
491 return result;
492 }
493
494This function must be registered with the interpreter using the
495:const:`METH_VARARGS` flag; this is described in section :ref:`methodtable`. The
Georg Brandl60203b42010-10-06 10:11:56 +0000496:c:func:`PyArg_ParseTuple` function and its arguments are documented in section
Georg Brandl116aa622007-08-15 14:28:22 +0000497:ref:`parsetuple`.
498
Georg Brandl60203b42010-10-06 10:11:56 +0000499The macros :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` increment/decrement the
Georg Brandl116aa622007-08-15 14:28:22 +0000500reference count of an object and are safe in the presence of *NULL* pointers
501(but note that *temp* will not be *NULL* in this context). More info on them
502in section :ref:`refcounts`.
503
Benjamin Petersond23f8222009-04-05 19:13:16 +0000504.. index:: single: PyObject_CallObject()
Georg Brandl116aa622007-08-15 14:28:22 +0000505
506Later, when it is time to call the function, you call the C function
Georg Brandl60203b42010-10-06 10:11:56 +0000507:c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
Georg Brandl116aa622007-08-15 14:28:22 +0000508arbitrary Python objects: the Python function, and the argument list. The
509argument list must always be a tuple object, whose length is the number of
Georg Brandl48310cd2009-01-03 21:18:54 +0000510arguments. To call the Python function with no arguments, pass in NULL, or
Christian Heimesd8654cf2007-12-02 15:22:16 +0000511an empty tuple; to call it with one argument, pass a singleton tuple.
Georg Brandl60203b42010-10-06 10:11:56 +0000512:c:func:`Py_BuildValue` returns a tuple when its format string consists of zero
Christian Heimesd8654cf2007-12-02 15:22:16 +0000513or more format codes between parentheses. For example::
Georg Brandl116aa622007-08-15 14:28:22 +0000514
515 int arg;
516 PyObject *arglist;
517 PyObject *result;
518 ...
519 arg = 123;
520 ...
521 /* Time to call the callback */
522 arglist = Py_BuildValue("(i)", arg);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000523 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl116aa622007-08-15 14:28:22 +0000524 Py_DECREF(arglist);
525
Georg Brandl60203b42010-10-06 10:11:56 +0000526:c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
527value of the Python function. :c:func:`PyObject_CallObject` is
Georg Brandl116aa622007-08-15 14:28:22 +0000528"reference-count-neutral" with respect to its arguments. In the example a new
Georg Brandl60203b42010-10-06 10:11:56 +0000529tuple was created to serve as the argument list, which is :c:func:`Py_DECREF`\
Georg Brandl337672b2013-10-06 11:02:38 +0200530-ed immediately after the :c:func:`PyObject_CallObject` call.
Georg Brandl116aa622007-08-15 14:28:22 +0000531
Georg Brandl60203b42010-10-06 10:11:56 +0000532The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
Georg Brandl116aa622007-08-15 14:28:22 +0000533new object, or it is an existing object whose reference count has been
534incremented. So, unless you want to save it in a global variable, you should
Georg Brandl60203b42010-10-06 10:11:56 +0000535somehow :c:func:`Py_DECREF` the result, even (especially!) if you are not
Georg Brandl116aa622007-08-15 14:28:22 +0000536interested in its value.
537
538Before you do this, however, it is important to check that the return value
539isn't *NULL*. If it is, the Python function terminated by raising an exception.
Georg Brandl60203b42010-10-06 10:11:56 +0000540If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
Georg Brandl116aa622007-08-15 14:28:22 +0000541should now return an error indication to its Python caller, so the interpreter
542can print a stack trace, or the calling Python code can handle the exception.
543If this is not possible or desirable, the exception should be cleared by calling
Georg Brandl60203b42010-10-06 10:11:56 +0000544:c:func:`PyErr_Clear`. For example::
Georg Brandl116aa622007-08-15 14:28:22 +0000545
546 if (result == NULL)
547 return NULL; /* Pass error back */
548 ...use result...
Georg Brandl48310cd2009-01-03 21:18:54 +0000549 Py_DECREF(result);
Georg Brandl116aa622007-08-15 14:28:22 +0000550
551Depending on the desired interface to the Python callback function, you may also
Georg Brandl60203b42010-10-06 10:11:56 +0000552have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
Georg Brandl116aa622007-08-15 14:28:22 +0000553the argument list is also provided by the Python program, through the same
554interface that specified the callback function. It can then be saved and used
555in the same manner as the function object. In other cases, you may have to
556construct a new tuple to pass as the argument list. The simplest way to do this
Georg Brandl60203b42010-10-06 10:11:56 +0000557is to call :c:func:`Py_BuildValue`. For example, if you want to pass an integral
Georg Brandl116aa622007-08-15 14:28:22 +0000558event code, you might use the following code::
559
560 PyObject *arglist;
561 ...
562 arglist = Py_BuildValue("(l)", eventcode);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000563 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl116aa622007-08-15 14:28:22 +0000564 Py_DECREF(arglist);
565 if (result == NULL)
566 return NULL; /* Pass error back */
567 /* Here maybe use the result */
568 Py_DECREF(result);
569
570Note the placement of ``Py_DECREF(arglist)`` immediately after the call, before
Christian Heimesd8654cf2007-12-02 15:22:16 +0000571the error check! Also note that strictly speaking this code is not complete:
Georg Brandl60203b42010-10-06 10:11:56 +0000572:c:func:`Py_BuildValue` may run out of memory, and this should be checked.
Georg Brandl116aa622007-08-15 14:28:22 +0000573
Georg Brandl48310cd2009-01-03 21:18:54 +0000574You may also call a function with keyword arguments by using
Georg Brandl60203b42010-10-06 10:11:56 +0000575:c:func:`PyObject_Call`, which supports arguments and keyword arguments. As in
576the above example, we use :c:func:`Py_BuildValue` to construct the dictionary. ::
Christian Heimesd8654cf2007-12-02 15:22:16 +0000577
578 PyObject *dict;
579 ...
580 dict = Py_BuildValue("{s:i}", "name", val);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000581 result = PyObject_Call(my_callback, NULL, dict);
Christian Heimesd8654cf2007-12-02 15:22:16 +0000582 Py_DECREF(dict);
583 if (result == NULL)
584 return NULL; /* Pass error back */
585 /* Here maybe use the result */
586 Py_DECREF(result);
Georg Brandl116aa622007-08-15 14:28:22 +0000587
Benjamin Petersond23f8222009-04-05 19:13:16 +0000588
Georg Brandl116aa622007-08-15 14:28:22 +0000589.. _parsetuple:
590
591Extracting Parameters in Extension Functions
592============================================
593
594.. index:: single: PyArg_ParseTuple()
595
Georg Brandl60203b42010-10-06 10:11:56 +0000596The :c:func:`PyArg_ParseTuple` function is declared as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000597
598 int PyArg_ParseTuple(PyObject *arg, char *format, ...);
599
600The *arg* argument must be a tuple object containing an argument list passed
601from Python to a C function. The *format* argument must be a format string,
602whose syntax is explained in :ref:`arg-parsing` in the Python/C API Reference
603Manual. The remaining arguments must be addresses of variables whose type is
604determined by the format string.
605
Georg Brandl60203b42010-10-06 10:11:56 +0000606Note that while :c:func:`PyArg_ParseTuple` checks that the Python arguments have
Georg Brandl116aa622007-08-15 14:28:22 +0000607the required types, it cannot check the validity of the addresses of C variables
608passed to the call: if you make mistakes there, your code will probably crash or
609at least overwrite random bits in memory. So be careful!
610
611Note that any Python object references which are provided to the caller are
612*borrowed* references; do not decrement their reference count!
613
614Some example calls::
615
Gregory P. Smith02c3b5c2008-11-23 23:49:16 +0000616 #define PY_SSIZE_T_CLEAN /* Make "s#" use Py_ssize_t rather than int. */
617 #include <Python.h>
618
619::
620
Georg Brandl116aa622007-08-15 14:28:22 +0000621 int ok;
622 int i, j;
623 long k, l;
624 const char *s;
Gregory P. Smith02c3b5c2008-11-23 23:49:16 +0000625 Py_ssize_t size;
Georg Brandl116aa622007-08-15 14:28:22 +0000626
627 ok = PyArg_ParseTuple(args, ""); /* No arguments */
628 /* Python call: f() */
629
630::
631
632 ok = PyArg_ParseTuple(args, "s", &s); /* A string */
633 /* Possible Python call: f('whoops!') */
634
635::
636
637 ok = PyArg_ParseTuple(args, "lls", &k, &l, &s); /* Two longs and a string */
638 /* Possible Python call: f(1, 2, 'three') */
639
640::
641
642 ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size);
643 /* A pair of ints and a string, whose size is also returned */
644 /* Possible Python call: f((1, 2), 'three') */
645
646::
647
648 {
649 const char *file;
650 const char *mode = "r";
651 int bufsize = 0;
652 ok = PyArg_ParseTuple(args, "s|si", &file, &mode, &bufsize);
653 /* A string, and optionally another string and an integer */
654 /* Possible Python calls:
655 f('spam')
656 f('spam', 'w')
657 f('spam', 'wb', 100000) */
658 }
659
660::
661
662 {
663 int left, top, right, bottom, h, v;
664 ok = PyArg_ParseTuple(args, "((ii)(ii))(ii)",
665 &left, &top, &right, &bottom, &h, &v);
666 /* A rectangle and a point */
667 /* Possible Python call:
668 f(((0, 0), (400, 300)), (10, 10)) */
669 }
670
671::
672
673 {
674 Py_complex c;
675 ok = PyArg_ParseTuple(args, "D:myfunction", &c);
676 /* a complex, also providing a function name for errors */
677 /* Possible Python call: myfunction(1+2j) */
678 }
679
680
681.. _parsetupleandkeywords:
682
683Keyword Parameters for Extension Functions
684==========================================
685
686.. index:: single: PyArg_ParseTupleAndKeywords()
687
Georg Brandl60203b42010-10-06 10:11:56 +0000688The :c:func:`PyArg_ParseTupleAndKeywords` function is declared as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000689
690 int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict,
691 char *format, char *kwlist[], ...);
692
693The *arg* and *format* parameters are identical to those of the
Georg Brandl60203b42010-10-06 10:11:56 +0000694:c:func:`PyArg_ParseTuple` function. The *kwdict* parameter is the dictionary of
Georg Brandl116aa622007-08-15 14:28:22 +0000695keywords received as the third parameter from the Python runtime. The *kwlist*
696parameter is a *NULL*-terminated list of strings which identify the parameters;
697the names are matched with the type information from *format* from left to
Georg Brandl60203b42010-10-06 10:11:56 +0000698right. On success, :c:func:`PyArg_ParseTupleAndKeywords` returns true, otherwise
Georg Brandl116aa622007-08-15 14:28:22 +0000699it returns false and raises an appropriate exception.
700
701.. note::
702
703 Nested tuples cannot be parsed when using keyword arguments! Keyword parameters
704 passed in which are not present in the *kwlist* will cause :exc:`TypeError` to
705 be raised.
706
707.. index:: single: Philbrick, Geoff
708
709Here is an example module which uses keywords, based on an example by Geoff
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000710Philbrick (philbrick@hks.com)::
Georg Brandl116aa622007-08-15 14:28:22 +0000711
712 #include "Python.h"
713
714 static PyObject *
715 keywdarg_parrot(PyObject *self, PyObject *args, PyObject *keywds)
Georg Brandl48310cd2009-01-03 21:18:54 +0000716 {
Georg Brandl116aa622007-08-15 14:28:22 +0000717 int voltage;
718 char *state = "a stiff";
719 char *action = "voom";
720 char *type = "Norwegian Blue";
721
722 static char *kwlist[] = {"voltage", "state", "action", "type", NULL};
723
Georg Brandl48310cd2009-01-03 21:18:54 +0000724 if (!PyArg_ParseTupleAndKeywords(args, keywds, "i|sss", kwlist,
Georg Brandl116aa622007-08-15 14:28:22 +0000725 &voltage, &state, &action, &type))
Georg Brandl48310cd2009-01-03 21:18:54 +0000726 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000727
Georg Brandl48310cd2009-01-03 21:18:54 +0000728 printf("-- This parrot wouldn't %s if you put %i Volts through it.\n",
Georg Brandl116aa622007-08-15 14:28:22 +0000729 action, voltage);
730 printf("-- Lovely plumage, the %s -- It's %s!\n", type, state);
731
Georg Brandla072de12013-10-06 20:46:08 +0200732 Py_RETURN_NONE;
Georg Brandl116aa622007-08-15 14:28:22 +0000733 }
734
735 static PyMethodDef keywdarg_methods[] = {
736 /* The cast of the function is necessary since PyCFunction values
737 * only take two PyObject* parameters, and keywdarg_parrot() takes
738 * three.
739 */
740 {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,
741 "Print a lovely skit to standard output."},
742 {NULL, NULL, 0, NULL} /* sentinel */
743 };
744
Eli Bendersky8f773492012-08-15 14:49:49 +0300745 static struct PyModuleDef keywdargmodule = {
746 PyModuleDef_HEAD_INIT,
747 "keywdarg",
748 NULL,
749 -1,
750 keywdarg_methods
751 };
Georg Brandl116aa622007-08-15 14:28:22 +0000752
Eli Bendersky8f773492012-08-15 14:49:49 +0300753 PyMODINIT_FUNC
754 PyInit_keywdarg(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000755 {
Eli Bendersky8f773492012-08-15 14:49:49 +0300756 return PyModule_Create(&keywdargmodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000757 }
758
759
760.. _buildvalue:
761
762Building Arbitrary Values
763=========================
764
Georg Brandl60203b42010-10-06 10:11:56 +0000765This function is the counterpart to :c:func:`PyArg_ParseTuple`. It is declared
Georg Brandl116aa622007-08-15 14:28:22 +0000766as follows::
767
768 PyObject *Py_BuildValue(char *format, ...);
769
770It recognizes a set of format units similar to the ones recognized by
Georg Brandl60203b42010-10-06 10:11:56 +0000771:c:func:`PyArg_ParseTuple`, but the arguments (which are input to the function,
Georg Brandl116aa622007-08-15 14:28:22 +0000772not output) must not be pointers, just values. It returns a new Python object,
773suitable for returning from a C function called from Python.
774
Georg Brandl60203b42010-10-06 10:11:56 +0000775One difference with :c:func:`PyArg_ParseTuple`: while the latter requires its
Georg Brandl116aa622007-08-15 14:28:22 +0000776first argument to be a tuple (since Python argument lists are always represented
Georg Brandl60203b42010-10-06 10:11:56 +0000777as tuples internally), :c:func:`Py_BuildValue` does not always build a tuple. It
Georg Brandl116aa622007-08-15 14:28:22 +0000778builds a tuple only if its format string contains two or more format units. If
779the format string is empty, it returns ``None``; if it contains exactly one
780format unit, it returns whatever object is described by that format unit. To
781force it to return a tuple of size 0 or one, parenthesize the format string.
782
783Examples (to the left the call, to the right the resulting Python value)::
784
785 Py_BuildValue("") None
786 Py_BuildValue("i", 123) 123
787 Py_BuildValue("iii", 123, 456, 789) (123, 456, 789)
788 Py_BuildValue("s", "hello") 'hello'
789 Py_BuildValue("y", "hello") b'hello'
790 Py_BuildValue("ss", "hello", "world") ('hello', 'world')
791 Py_BuildValue("s#", "hello", 4) 'hell'
792 Py_BuildValue("y#", "hello", 4) b'hell'
793 Py_BuildValue("()") ()
794 Py_BuildValue("(i)", 123) (123,)
795 Py_BuildValue("(ii)", 123, 456) (123, 456)
796 Py_BuildValue("(i,i)", 123, 456) (123, 456)
797 Py_BuildValue("[i,i]", 123, 456) [123, 456]
798 Py_BuildValue("{s:i,s:i}",
799 "abc", 123, "def", 456) {'abc': 123, 'def': 456}
800 Py_BuildValue("((ii)(ii)) (ii)",
801 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))
802
803
804.. _refcounts:
805
806Reference Counts
807================
808
809In languages like C or C++, the programmer is responsible for dynamic allocation
810and deallocation of memory on the heap. In C, this is done using the functions
Georg Brandl60203b42010-10-06 10:11:56 +0000811:c:func:`malloc` and :c:func:`free`. In C++, the operators ``new`` and
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000812``delete`` are used with essentially the same meaning and we'll restrict
Georg Brandl116aa622007-08-15 14:28:22 +0000813the following discussion to the C case.
814
Georg Brandl60203b42010-10-06 10:11:56 +0000815Every block of memory allocated with :c:func:`malloc` should eventually be
816returned to the pool of available memory by exactly one call to :c:func:`free`.
817It is important to call :c:func:`free` at the right time. If a block's address
818is forgotten but :c:func:`free` is not called for it, the memory it occupies
Georg Brandl116aa622007-08-15 14:28:22 +0000819cannot be reused until the program terminates. This is called a :dfn:`memory
Georg Brandl60203b42010-10-06 10:11:56 +0000820leak`. On the other hand, if a program calls :c:func:`free` for a block and then
Georg Brandl116aa622007-08-15 14:28:22 +0000821continues to use the block, it creates a conflict with re-use of the block
Georg Brandl60203b42010-10-06 10:11:56 +0000822through another :c:func:`malloc` call. This is called :dfn:`using freed memory`.
Georg Brandl116aa622007-08-15 14:28:22 +0000823It has the same bad consequences as referencing uninitialized data --- core
824dumps, wrong results, mysterious crashes.
825
826Common causes of memory leaks are unusual paths through the code. For instance,
827a function may allocate a block of memory, do some calculation, and then free
828the block again. Now a change in the requirements for the function may add a
829test to the calculation that detects an error condition and can return
830prematurely from the function. It's easy to forget to free the allocated memory
831block when taking this premature exit, especially when it is added later to the
832code. Such leaks, once introduced, often go undetected for a long time: the
833error exit is taken only in a small fraction of all calls, and most modern
834machines have plenty of virtual memory, so the leak only becomes apparent in a
835long-running process that uses the leaking function frequently. Therefore, it's
836important to prevent leaks from happening by having a coding convention or
837strategy that minimizes this kind of errors.
838
Georg Brandl60203b42010-10-06 10:11:56 +0000839Since Python makes heavy use of :c:func:`malloc` and :c:func:`free`, it needs a
Georg Brandl116aa622007-08-15 14:28:22 +0000840strategy to avoid memory leaks as well as the use of freed memory. The chosen
841method is called :dfn:`reference counting`. The principle is simple: every
842object contains a counter, which is incremented when a reference to the object
843is stored somewhere, and which is decremented when a reference to it is deleted.
844When the counter reaches zero, the last reference to the object has been deleted
845and the object is freed.
846
847An alternative strategy is called :dfn:`automatic garbage collection`.
848(Sometimes, reference counting is also referred to as a garbage collection
849strategy, hence my use of "automatic" to distinguish the two.) The big
850advantage of automatic garbage collection is that the user doesn't need to call
Georg Brandl60203b42010-10-06 10:11:56 +0000851:c:func:`free` explicitly. (Another claimed advantage is an improvement in speed
Georg Brandl116aa622007-08-15 14:28:22 +0000852or memory usage --- this is no hard fact however.) The disadvantage is that for
853C, there is no truly portable automatic garbage collector, while reference
Georg Brandl60203b42010-10-06 10:11:56 +0000854counting can be implemented portably (as long as the functions :c:func:`malloc`
855and :c:func:`free` are available --- which the C Standard guarantees). Maybe some
Georg Brandl116aa622007-08-15 14:28:22 +0000856day a sufficiently portable automatic garbage collector will be available for C.
857Until then, we'll have to live with reference counts.
858
859While Python uses the traditional reference counting implementation, it also
860offers a cycle detector that works to detect reference cycles. This allows
861applications to not worry about creating direct or indirect circular references;
862these are the weakness of garbage collection implemented using only reference
863counting. Reference cycles consist of objects which contain (possibly indirect)
864references to themselves, so that each object in the cycle has a reference count
865which is non-zero. Typical reference counting implementations are not able to
866reclaim the memory belonging to any objects in a reference cycle, or referenced
867from the objects in the cycle, even though there are no further references to
868the cycle itself.
869
Georg Brandla4c8c472014-10-31 10:38:49 +0100870The cycle detector is able to detect garbage cycles and can reclaim them.
871The :mod:`gc` module exposes a way to run the detector (the
Serhiy Storchaka0b68a2d2013-10-09 13:26:17 +0300872:func:`~gc.collect` function), as well as configuration
Georg Brandl116aa622007-08-15 14:28:22 +0000873interfaces and the ability to disable the detector at runtime. The cycle
874detector is considered an optional component; though it is included by default,
875it can be disabled at build time using the :option:`--without-cycle-gc` option
Georg Brandlf6945182008-02-01 11:56:49 +0000876to the :program:`configure` script on Unix platforms (including Mac OS X). If
877the cycle detector is disabled in this way, the :mod:`gc` module will not be
878available.
Georg Brandl116aa622007-08-15 14:28:22 +0000879
880
881.. _refcountsinpython:
882
883Reference Counting in Python
884----------------------------
885
886There are two macros, ``Py_INCREF(x)`` and ``Py_DECREF(x)``, which handle the
Georg Brandl60203b42010-10-06 10:11:56 +0000887incrementing and decrementing of the reference count. :c:func:`Py_DECREF` also
Georg Brandl116aa622007-08-15 14:28:22 +0000888frees the object when the count reaches zero. For flexibility, it doesn't call
Georg Brandl60203b42010-10-06 10:11:56 +0000889:c:func:`free` directly --- rather, it makes a call through a function pointer in
Georg Brandl116aa622007-08-15 14:28:22 +0000890the object's :dfn:`type object`. For this purpose (and others), every object
891also contains a pointer to its type object.
892
893The big question now remains: when to use ``Py_INCREF(x)`` and ``Py_DECREF(x)``?
894Let's first introduce some terms. Nobody "owns" an object; however, you can
895:dfn:`own a reference` to an object. An object's reference count is now defined
896as the number of owned references to it. The owner of a reference is
Georg Brandl60203b42010-10-06 10:11:56 +0000897responsible for calling :c:func:`Py_DECREF` when the reference is no longer
Georg Brandl116aa622007-08-15 14:28:22 +0000898needed. Ownership of a reference can be transferred. There are three ways to
Georg Brandl60203b42010-10-06 10:11:56 +0000899dispose of an owned reference: pass it on, store it, or call :c:func:`Py_DECREF`.
Georg Brandl116aa622007-08-15 14:28:22 +0000900Forgetting to dispose of an owned reference creates a memory leak.
901
902It is also possible to :dfn:`borrow` [#]_ a reference to an object. The
Georg Brandl60203b42010-10-06 10:11:56 +0000903borrower of a reference should not call :c:func:`Py_DECREF`. The borrower must
Georg Brandl116aa622007-08-15 14:28:22 +0000904not hold on to the object longer than the owner from which it was borrowed.
905Using a borrowed reference after the owner has disposed of it risks using freed
906memory and should be avoided completely. [#]_
907
908The advantage of borrowing over owning a reference is that you don't need to
909take care of disposing of the reference on all possible paths through the code
910--- in other words, with a borrowed reference you don't run the risk of leaking
Benjamin Peterson6ebe78f2008-12-21 00:06:59 +0000911when a premature exit is taken. The disadvantage of borrowing over owning is
Georg Brandl116aa622007-08-15 14:28:22 +0000912that there are some subtle situations where in seemingly correct code a borrowed
913reference can be used after the owner from which it was borrowed has in fact
914disposed of it.
915
916A borrowed reference can be changed into an owned reference by calling
Georg Brandl60203b42010-10-06 10:11:56 +0000917:c:func:`Py_INCREF`. This does not affect the status of the owner from which the
Georg Brandl116aa622007-08-15 14:28:22 +0000918reference was borrowed --- it creates a new owned reference, and gives full
919owner responsibilities (the new owner must dispose of the reference properly, as
920well as the previous owner).
921
922
923.. _ownershiprules:
924
925Ownership Rules
926---------------
927
928Whenever an object reference is passed into or out of a function, it is part of
929the function's interface specification whether ownership is transferred with the
930reference or not.
931
932Most functions that return a reference to an object pass on ownership with the
933reference. In particular, all functions whose function it is to create a new
Georg Brandl60203b42010-10-06 10:11:56 +0000934object, such as :c:func:`PyLong_FromLong` and :c:func:`Py_BuildValue`, pass
Georg Brandl116aa622007-08-15 14:28:22 +0000935ownership to the receiver. Even if the object is not actually new, you still
936receive ownership of a new reference to that object. For instance,
Georg Brandl60203b42010-10-06 10:11:56 +0000937:c:func:`PyLong_FromLong` maintains a cache of popular values and can return a
Georg Brandl116aa622007-08-15 14:28:22 +0000938reference to a cached item.
939
940Many functions that extract objects from other objects also transfer ownership
Georg Brandl60203b42010-10-06 10:11:56 +0000941with the reference, for instance :c:func:`PyObject_GetAttrString`. The picture
Georg Brandl116aa622007-08-15 14:28:22 +0000942is less clear, here, however, since a few common routines are exceptions:
Georg Brandl60203b42010-10-06 10:11:56 +0000943:c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and
944:c:func:`PyDict_GetItemString` all return references that you borrow from the
Georg Brandl116aa622007-08-15 14:28:22 +0000945tuple, list or dictionary.
946
Georg Brandl60203b42010-10-06 10:11:56 +0000947The function :c:func:`PyImport_AddModule` also returns a borrowed reference, even
Georg Brandl116aa622007-08-15 14:28:22 +0000948though it may actually create the object it returns: this is possible because an
949owned reference to the object is stored in ``sys.modules``.
950
951When you pass an object reference into another function, in general, the
952function borrows the reference from you --- if it needs to store it, it will use
Georg Brandl60203b42010-10-06 10:11:56 +0000953:c:func:`Py_INCREF` to become an independent owner. There are exactly two
954important exceptions to this rule: :c:func:`PyTuple_SetItem` and
955:c:func:`PyList_SetItem`. These functions take over ownership of the item passed
956to them --- even if they fail! (Note that :c:func:`PyDict_SetItem` and friends
Georg Brandl116aa622007-08-15 14:28:22 +0000957don't take over ownership --- they are "normal.")
958
959When a C function is called from Python, it borrows references to its arguments
960from the caller. The caller owns a reference to the object, so the borrowed
961reference's lifetime is guaranteed until the function returns. Only when such a
962borrowed reference must be stored or passed on, it must be turned into an owned
Georg Brandl60203b42010-10-06 10:11:56 +0000963reference by calling :c:func:`Py_INCREF`.
Georg Brandl116aa622007-08-15 14:28:22 +0000964
965The object reference returned from a C function that is called from Python must
966be an owned reference --- ownership is transferred from the function to its
967caller.
968
969
970.. _thinice:
971
972Thin Ice
973--------
974
975There are a few situations where seemingly harmless use of a borrowed reference
976can lead to problems. These all have to do with implicit invocations of the
977interpreter, which can cause the owner of a reference to dispose of it.
978
Georg Brandl60203b42010-10-06 10:11:56 +0000979The first and most important case to know about is using :c:func:`Py_DECREF` on
Georg Brandl116aa622007-08-15 14:28:22 +0000980an unrelated object while borrowing a reference to a list item. For instance::
981
982 void
983 bug(PyObject *list)
984 {
985 PyObject *item = PyList_GetItem(list, 0);
986
Georg Brandl9914dd32007-12-02 23:08:39 +0000987 PyList_SetItem(list, 1, PyLong_FromLong(0L));
Georg Brandl116aa622007-08-15 14:28:22 +0000988 PyObject_Print(item, stdout, 0); /* BUG! */
989 }
990
991This function first borrows a reference to ``list[0]``, then replaces
992``list[1]`` with the value ``0``, and finally prints the borrowed reference.
993Looks harmless, right? But it's not!
994
Georg Brandl60203b42010-10-06 10:11:56 +0000995Let's follow the control flow into :c:func:`PyList_SetItem`. The list owns
Georg Brandl116aa622007-08-15 14:28:22 +0000996references to all its items, so when item 1 is replaced, it has to dispose of
997the original item 1. Now let's suppose the original item 1 was an instance of a
998user-defined class, and let's further suppose that the class defined a
999:meth:`__del__` method. If this class instance has a reference count of 1,
1000disposing of it will call its :meth:`__del__` method.
1001
1002Since it is written in Python, the :meth:`__del__` method can execute arbitrary
1003Python code. Could it perhaps do something to invalidate the reference to
Georg Brandl60203b42010-10-06 10:11:56 +00001004``item`` in :c:func:`bug`? You bet! Assuming that the list passed into
1005:c:func:`bug` is accessible to the :meth:`__del__` method, it could execute a
Georg Brandl116aa622007-08-15 14:28:22 +00001006statement to the effect of ``del list[0]``, and assuming this was the last
1007reference to that object, it would free the memory associated with it, thereby
1008invalidating ``item``.
1009
1010The solution, once you know the source of the problem, is easy: temporarily
1011increment the reference count. The correct version of the function reads::
1012
1013 void
1014 no_bug(PyObject *list)
1015 {
1016 PyObject *item = PyList_GetItem(list, 0);
1017
1018 Py_INCREF(item);
Georg Brandl9914dd32007-12-02 23:08:39 +00001019 PyList_SetItem(list, 1, PyLong_FromLong(0L));
Georg Brandl116aa622007-08-15 14:28:22 +00001020 PyObject_Print(item, stdout, 0);
1021 Py_DECREF(item);
1022 }
1023
1024This is a true story. An older version of Python contained variants of this bug
1025and someone spent a considerable amount of time in a C debugger to figure out
1026why his :meth:`__del__` methods would fail...
1027
1028The second case of problems with a borrowed reference is a variant involving
1029threads. Normally, multiple threads in the Python interpreter can't get in each
1030other's way, because there is a global lock protecting Python's entire object
1031space. However, it is possible to temporarily release this lock using the macro
Georg Brandl60203b42010-10-06 10:11:56 +00001032:c:macro:`Py_BEGIN_ALLOW_THREADS`, and to re-acquire it using
1033:c:macro:`Py_END_ALLOW_THREADS`. This is common around blocking I/O calls, to
Georg Brandl116aa622007-08-15 14:28:22 +00001034let other threads use the processor while waiting for the I/O to complete.
1035Obviously, the following function has the same problem as the previous one::
1036
1037 void
1038 bug(PyObject *list)
1039 {
1040 PyObject *item = PyList_GetItem(list, 0);
1041 Py_BEGIN_ALLOW_THREADS
1042 ...some blocking I/O call...
1043 Py_END_ALLOW_THREADS
1044 PyObject_Print(item, stdout, 0); /* BUG! */
1045 }
1046
1047
1048.. _nullpointers:
1049
1050NULL Pointers
1051-------------
1052
1053In general, functions that take object references as arguments do not expect you
1054to pass them *NULL* pointers, and will dump core (or cause later core dumps) if
1055you do so. Functions that return object references generally return *NULL* only
1056to indicate that an exception occurred. The reason for not testing for *NULL*
1057arguments is that functions often pass the objects they receive on to other
1058function --- if each function were to test for *NULL*, there would be a lot of
1059redundant tests and the code would run more slowly.
1060
1061It is better to test for *NULL* only at the "source:" when a pointer that may be
Georg Brandl60203b42010-10-06 10:11:56 +00001062*NULL* is received, for example, from :c:func:`malloc` or from a function that
Georg Brandl116aa622007-08-15 14:28:22 +00001063may raise an exception.
1064
Georg Brandl60203b42010-10-06 10:11:56 +00001065The macros :c:func:`Py_INCREF` and :c:func:`Py_DECREF` do not check for *NULL*
1066pointers --- however, their variants :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF`
Georg Brandl116aa622007-08-15 14:28:22 +00001067do.
1068
1069The macros for checking for a particular object type (``Pytype_Check()``) don't
1070check for *NULL* pointers --- again, there is much code that calls several of
1071these in a row to test an object against various different expected types, and
1072this would generate redundant tests. There are no variants with *NULL*
1073checking.
1074
1075The C function calling mechanism guarantees that the argument list passed to C
1076functions (``args`` in the examples) is never *NULL* --- in fact it guarantees
1077that it is always a tuple. [#]_
1078
1079It is a severe error to ever let a *NULL* pointer "escape" to the Python user.
1080
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001081.. Frank Stajano:
1082 A pedagogically buggy example, along the lines of the previous listing, would
1083 be helpful here -- showing in more concrete terms what sort of actions could
1084 cause the problem. I can't very well imagine it from the description.
Georg Brandl116aa622007-08-15 14:28:22 +00001085
1086
1087.. _cplusplus:
1088
1089Writing Extensions in C++
1090=========================
1091
1092It is possible to write extension modules in C++. Some restrictions apply. If
1093the main program (the Python interpreter) is compiled and linked by the C
1094compiler, global or static objects with constructors cannot be used. This is
1095not a problem if the main program is linked by the C++ compiler. Functions that
1096will be called by the Python interpreter (in particular, module initialization
1097functions) have to be declared using ``extern "C"``. It is unnecessary to
1098enclose the Python header files in ``extern "C" {...}`` --- they use this form
1099already if the symbol ``__cplusplus`` is defined (all recent C++ compilers
1100define this symbol).
1101
1102
Benjamin Petersonb173f782009-05-05 22:31:58 +00001103.. _using-capsules:
Georg Brandl116aa622007-08-15 14:28:22 +00001104
1105Providing a C API for an Extension Module
1106=========================================
1107
1108.. sectionauthor:: Konrad Hinsen <hinsen@cnrs-orleans.fr>
1109
1110
1111Many extension modules just provide new functions and types to be used from
1112Python, but sometimes the code in an extension module can be useful for other
1113extension modules. For example, an extension module could implement a type
1114"collection" which works like lists without order. Just like the standard Python
1115list type has a C API which permits extension modules to create and manipulate
1116lists, this new collection type should have a set of C functions for direct
1117manipulation from other extension modules.
1118
1119At first sight this seems easy: just write the functions (without declaring them
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001120``static``, of course), provide an appropriate header file, and document
Georg Brandl116aa622007-08-15 14:28:22 +00001121the C API. And in fact this would work if all extension modules were always
1122linked statically with the Python interpreter. When modules are used as shared
1123libraries, however, the symbols defined in one module may not be visible to
1124another module. The details of visibility depend on the operating system; some
1125systems use one global namespace for the Python interpreter and all extension
1126modules (Windows, for example), whereas others require an explicit list of
1127imported symbols at module link time (AIX is one example), or offer a choice of
1128different strategies (most Unices). And even if symbols are globally visible,
1129the module whose functions one wishes to call might not have been loaded yet!
1130
1131Portability therefore requires not to make any assumptions about symbol
1132visibility. This means that all symbols in extension modules should be declared
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001133``static``, except for the module's initialization function, in order to
Georg Brandl116aa622007-08-15 14:28:22 +00001134avoid name clashes with other extension modules (as discussed in section
1135:ref:`methodtable`). And it means that symbols that *should* be accessible from
1136other extension modules must be exported in a different way.
1137
1138Python provides a special mechanism to pass C-level information (pointers) from
Benjamin Petersonb173f782009-05-05 22:31:58 +00001139one extension module to another one: Capsules. A Capsule is a Python data type
Georg Brandl60203b42010-10-06 10:11:56 +00001140which stores a pointer (:c:type:`void \*`). Capsules can only be created and
Georg Brandl116aa622007-08-15 14:28:22 +00001141accessed via their C API, but they can be passed around like any other Python
1142object. In particular, they can be assigned to a name in an extension module's
1143namespace. Other extension modules can then import this module, retrieve the
Benjamin Petersonb173f782009-05-05 22:31:58 +00001144value of this name, and then retrieve the pointer from the Capsule.
Georg Brandl116aa622007-08-15 14:28:22 +00001145
Benjamin Petersonb173f782009-05-05 22:31:58 +00001146There are many ways in which Capsules can be used to export the C API of an
1147extension module. Each function could get its own Capsule, or all C API pointers
1148could be stored in an array whose address is published in a Capsule. And the
Georg Brandl116aa622007-08-15 14:28:22 +00001149various tasks of storing and retrieving the pointers can be distributed in
1150different ways between the module providing the code and the client modules.
1151
Benjamin Petersonb173f782009-05-05 22:31:58 +00001152Whichever method you choose, it's important to name your Capsules properly.
Georg Brandl60203b42010-10-06 10:11:56 +00001153The function :c:func:`PyCapsule_New` takes a name parameter
1154(:c:type:`const char \*`); you're permitted to pass in a *NULL* name, but
Benjamin Petersonb173f782009-05-05 22:31:58 +00001155we strongly encourage you to specify a name. Properly named Capsules provide
1156a degree of runtime type-safety; there is no feasible way to tell one unnamed
1157Capsule from another.
1158
1159In particular, Capsules used to expose C APIs should be given a name following
1160this convention::
1161
1162 modulename.attributename
1163
Georg Brandl60203b42010-10-06 10:11:56 +00001164The convenience function :c:func:`PyCapsule_Import` makes it easy to
Benjamin Petersonb173f782009-05-05 22:31:58 +00001165load a C API provided via a Capsule, but only if the Capsule's name
1166matches this convention. This behavior gives C API users a high degree
1167of certainty that the Capsule they load contains the correct C API.
1168
Georg Brandl116aa622007-08-15 14:28:22 +00001169The following example demonstrates an approach that puts most of the burden on
1170the writer of the exporting module, which is appropriate for commonly used
1171library modules. It stores all C API pointers (just one in the example!) in an
Georg Brandl60203b42010-10-06 10:11:56 +00001172array of :c:type:`void` pointers which becomes the value of a Capsule. The header
Georg Brandl116aa622007-08-15 14:28:22 +00001173file corresponding to the module provides a macro that takes care of importing
1174the module and retrieving its C API pointers; client modules only have to call
1175this macro before accessing the C API.
1176
1177The exporting module is a modification of the :mod:`spam` module from section
1178:ref:`extending-simpleexample`. The function :func:`spam.system` does not call
Georg Brandl60203b42010-10-06 10:11:56 +00001179the C library function :c:func:`system` directly, but a function
1180:c:func:`PySpam_System`, which would of course do something more complicated in
Georg Brandl116aa622007-08-15 14:28:22 +00001181reality (such as adding "spam" to every command). This function
Georg Brandl60203b42010-10-06 10:11:56 +00001182:c:func:`PySpam_System` is also exported to other extension modules.
Georg Brandl116aa622007-08-15 14:28:22 +00001183
Georg Brandl60203b42010-10-06 10:11:56 +00001184The function :c:func:`PySpam_System` is a plain C function, declared
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001185``static`` like everything else::
Georg Brandl116aa622007-08-15 14:28:22 +00001186
1187 static int
1188 PySpam_System(const char *command)
1189 {
1190 return system(command);
1191 }
1192
Georg Brandl60203b42010-10-06 10:11:56 +00001193The function :c:func:`spam_system` is modified in a trivial way::
Georg Brandl116aa622007-08-15 14:28:22 +00001194
1195 static PyObject *
1196 spam_system(PyObject *self, PyObject *args)
1197 {
1198 const char *command;
1199 int sts;
1200
1201 if (!PyArg_ParseTuple(args, "s", &command))
1202 return NULL;
1203 sts = PySpam_System(command);
Georg Brandlc877a7c2010-11-26 11:55:48 +00001204 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +00001205 }
1206
1207In the beginning of the module, right after the line ::
1208
1209 #include "Python.h"
1210
1211two more lines must be added::
1212
1213 #define SPAM_MODULE
1214 #include "spammodule.h"
1215
1216The ``#define`` is used to tell the header file that it is being included in the
1217exporting module, not a client module. Finally, the module's initialization
1218function must take care of initializing the C API pointer array::
1219
1220 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001221 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +00001222 {
1223 PyObject *m;
1224 static void *PySpam_API[PySpam_API_pointers];
1225 PyObject *c_api_object;
1226
Martin v. Löwis1a214512008-06-11 05:26:20 +00001227 m = PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +00001228 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001229 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001230
1231 /* Initialize the C API pointer array */
1232 PySpam_API[PySpam_System_NUM] = (void *)PySpam_System;
1233
Benjamin Petersonb173f782009-05-05 22:31:58 +00001234 /* Create a Capsule containing the API pointer array's address */
1235 c_api_object = PyCapsule_New((void *)PySpam_API, "spam._C_API", NULL);
Georg Brandl116aa622007-08-15 14:28:22 +00001236
1237 if (c_api_object != NULL)
1238 PyModule_AddObject(m, "_C_API", c_api_object);
Martin v. Löwis1a214512008-06-11 05:26:20 +00001239 return m;
Georg Brandl116aa622007-08-15 14:28:22 +00001240 }
1241
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001242Note that ``PySpam_API`` is declared ``static``; otherwise the pointer
Martin v. Löwis1a214512008-06-11 05:26:20 +00001243array would disappear when :func:`PyInit_spam` terminates!
Georg Brandl116aa622007-08-15 14:28:22 +00001244
1245The bulk of the work is in the header file :file:`spammodule.h`, which looks
1246like this::
1247
1248 #ifndef Py_SPAMMODULE_H
1249 #define Py_SPAMMODULE_H
1250 #ifdef __cplusplus
1251 extern "C" {
1252 #endif
1253
1254 /* Header file for spammodule */
1255
1256 /* C API functions */
1257 #define PySpam_System_NUM 0
1258 #define PySpam_System_RETURN int
1259 #define PySpam_System_PROTO (const char *command)
1260
1261 /* Total number of C API pointers */
1262 #define PySpam_API_pointers 1
1263
1264
1265 #ifdef SPAM_MODULE
1266 /* This section is used when compiling spammodule.c */
1267
1268 static PySpam_System_RETURN PySpam_System PySpam_System_PROTO;
1269
1270 #else
1271 /* This section is used in modules that use spammodule's API */
1272
1273 static void **PySpam_API;
1274
1275 #define PySpam_System \
1276 (*(PySpam_System_RETURN (*)PySpam_System_PROTO) PySpam_API[PySpam_System_NUM])
1277
Benjamin Petersonb173f782009-05-05 22:31:58 +00001278 /* Return -1 on error, 0 on success.
1279 * PyCapsule_Import will set an exception if there's an error.
1280 */
Georg Brandl116aa622007-08-15 14:28:22 +00001281 static int
1282 import_spam(void)
1283 {
Benjamin Petersonb173f782009-05-05 22:31:58 +00001284 PySpam_API = (void **)PyCapsule_Import("spam._C_API", 0);
1285 return (PySpam_API != NULL) ? 0 : -1;
Georg Brandl116aa622007-08-15 14:28:22 +00001286 }
1287
1288 #endif
1289
1290 #ifdef __cplusplus
1291 }
1292 #endif
1293
1294 #endif /* !defined(Py_SPAMMODULE_H) */
1295
1296All that a client module must do in order to have access to the function
Georg Brandl60203b42010-10-06 10:11:56 +00001297:c:func:`PySpam_System` is to call the function (or rather macro)
1298:c:func:`import_spam` in its initialization function::
Georg Brandl116aa622007-08-15 14:28:22 +00001299
1300 PyMODINIT_FUNC
Benjamin Peterson7c435242009-03-24 01:40:39 +00001301 PyInit_client(void)
Georg Brandl116aa622007-08-15 14:28:22 +00001302 {
1303 PyObject *m;
1304
Georg Brandl21151762009-03-31 15:52:41 +00001305 m = PyModule_Create(&clientmodule);
Georg Brandl116aa622007-08-15 14:28:22 +00001306 if (m == NULL)
Georg Brandl21151762009-03-31 15:52:41 +00001307 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001308 if (import_spam() < 0)
Georg Brandl21151762009-03-31 15:52:41 +00001309 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001310 /* additional initialization can happen here */
Georg Brandl21151762009-03-31 15:52:41 +00001311 return m;
Georg Brandl116aa622007-08-15 14:28:22 +00001312 }
1313
1314The main disadvantage of this approach is that the file :file:`spammodule.h` is
1315rather complicated. However, the basic structure is the same for each function
1316that is exported, so it has to be learned only once.
1317
Benjamin Petersonb173f782009-05-05 22:31:58 +00001318Finally it should be mentioned that Capsules offer additional functionality,
Georg Brandl116aa622007-08-15 14:28:22 +00001319which is especially useful for memory allocation and deallocation of the pointer
Benjamin Petersonb173f782009-05-05 22:31:58 +00001320stored in a Capsule. The details are described in the Python/C API Reference
1321Manual in the section :ref:`capsules` and in the implementation of Capsules (files
1322:file:`Include/pycapsule.h` and :file:`Objects/pycapsule.c` in the Python source
Georg Brandl116aa622007-08-15 14:28:22 +00001323code distribution).
1324
1325.. rubric:: Footnotes
1326
1327.. [#] An interface for this function already exists in the standard module :mod:`os`
1328 --- it was chosen as a simple and straightforward example.
1329
1330.. [#] The metaphor of "borrowing" a reference is not completely correct: the owner
1331 still has a copy of the reference.
1332
1333.. [#] Checking that the reference count is at least 1 **does not work** --- the
1334 reference count itself could be in freed memory and may thus be reused for
1335 another object!
1336
1337.. [#] These guarantees don't hold when you use the "old" style calling convention ---
1338 this is still found in much existing code.
1339