source: vendor/python/2.5/Doc/api/api.tex

Last change on this file was 3225, checked in by bird, 18 years ago

Python 2.5

File size: 1.2 KB
Line 
1\documentclass{manual}
2
3\title{Python/C API Reference Manual}
4
5\input{boilerplate}
6
7\makeindex % tell \index to actually write the .idx file
8
9
10\begin{document}
11
12\maketitle
13
14\ifhtml
15\chapter*{Front Matter\label{front}}
16\fi
17
18\input{copyright}
19
20\begin{abstract}
21
22\noindent
23This manual documents the API used by C and \Cpp{} programmers who
24want to write extension modules or embed Python. It is a companion to
25\citetitle[../ext/ext.html]{Extending and Embedding the Python
26Interpreter}, which describes the general principles of extension
27writing but does not document the API functions in detail.
28
29\warning{The current version of this document is incomplete. I hope
30that it is nevertheless useful. I will continue to work on it, and
31release new versions from time to time, independent from Python source
32code releases.}
33
34\end{abstract}
35
36\tableofcontents
37
38
39\input{intro}
40\input{veryhigh}
41\input{refcounting}
42\input{exceptions}
43\input{utilities}
44\input{abstract}
45\input{concrete}
46\input{init}
47\input{memory}
48\input{newtypes}
49
50
51\appendix
52\chapter{Reporting Bugs}
53\input{reportingbugs}
54
55\chapter{History and License}
56\input{license}
57
58\input{api.ind} % Index -- must be last
59
60\end{document}
Note: See TracBrowser for help on using the repository browser.