Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _c-api-index: |
| 2 | |
| 3 | ################################## |
| 4 | Python/C API Reference Manual |
| 5 | ################################## |
| 6 | |
| 7 | :Release: |version| |
| 8 | :Date: |today| |
| 9 | |
| 10 | This manual documents the API used by C and C++ programmers who want to write |
| 11 | extension modules or embed Python. It is a companion to :ref:`extending-index`, |
| 12 | which describes the general principles of extension writing but does not |
| 13 | document the API functions in detail. |
| 14 | |
| 15 | .. warning:: |
| 16 | |
| 17 | The current version of this document is somewhat incomplete. However, most of |
| 18 | the important functions, types and structures are described. |
| 19 | |
| 20 | |
| 21 | .. toctree:: |
| 22 | :maxdepth: 2 |
| 23 | |
| 24 | intro.rst |
| 25 | veryhigh.rst |
| 26 | refcounting.rst |
| 27 | exceptions.rst |
| 28 | utilities.rst |
| 29 | abstract.rst |
| 30 | concrete.rst |
| 31 | init.rst |
| 32 | memory.rst |
| 33 | newtypes.rst |