blob: a7c9ef91ad30c676dabaeefd56e9d609185dbafc [file] [log] [blame]
Martin v. Löwisc06917b2012-06-22 12:49:08 +02001.. highlightlang:: c
2
3.. _stable:
4
Nick Coghlan7d82c862013-03-07 23:14:44 +10005***********************************
6Stable Application Binary Interface
7***********************************
Martin v. Löwisc06917b2012-06-22 12:49:08 +02008
9Traditionally, the C API of Python will change with every release.
10Most changes will be source-compatible, typically by only adding API,
11rather than changing existing API or removing API (although some
12interfaces do get removed after being deprecated first).
13
14Unfortunately, the API compatibility does not extend to binary
15compatibility (the ABI). The reason is primarily the evolution of
16struct definitions, where addition of a new field, or changing
17the type of a field, might not break the API, but can break the ABI.
Martin v. Löwis466bfff2012-06-22 12:49:59 +020018As a consequence, extension modules need to be recompiled for
19every Python release (although an exception is possible on Unix
Martin v. Löwisc06917b2012-06-22 12:49:08 +020020when none of the affected interfaces are used). In addition, on
21Windows, extension modules link with a specific pythonXY.dll and
22need to be recompiled to link with a newer one.
23
24Since Python 3.2, a subset of the API has been declared to guarantee
25a stable ABI. Extension modules wishing to use this API need to define
Nick Coghlan7d82c862013-03-07 23:14:44 +100026``Py_LIMITED_API``. A number of interpreter details then become hidden
Martin v. Löwisc06917b2012-06-22 12:49:08 +020027from the extension module; in return, a module is built that works
Nick Coghlan7d82c862013-03-07 23:14:44 +100028on any 3.x version (x>=2) without recompilation.
29
30In some cases, the stable ABI needs to be extended with new functions.
31Extension modules wishing to use these new APIs need to set
32``Py_LIMITED_API`` to the ``PY_VERSION_HEX`` value (see
33:ref:`apiabiversion`) of the minimum Python version they want to
34support (e.g. ``0x03030000`` for Python 3.3). Such modules will work
Martin v. Löwisc06917b2012-06-22 12:49:08 +020035on all subsequent Python releases, but fail to load (because of
36missing symbols) on the older releases.
37
38As of Python 3.2, the set of functions available to the limited API
39is documented in PEP 384.
40
41.. XXX copy exact list here? Into each functions definition?