Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +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 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 15 | .. toctree:: |
| 16 | :maxdepth: 2 |
| 17 | |
| 18 | intro.rst |
| 19 | veryhigh.rst |
| 20 | refcounting.rst |
| 21 | exceptions.rst |
| 22 | utilities.rst |
| 23 | abstract.rst |
| 24 | concrete.rst |
| 25 | init.rst |
| 26 | memory.rst |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 27 | objimpl.rst |