1 | \documentclass{manual}
|
---|
2 |
|
---|
3 | \title{Macintosh Library Modules}
|
---|
4 |
|
---|
5 | \input{boilerplate}
|
---|
6 |
|
---|
7 | \makeindex % tell \index to actually write the .idx file
|
---|
8 | \makemodindex % ... and the module index as well.
|
---|
9 |
|
---|
10 |
|
---|
11 | \begin{document}
|
---|
12 |
|
---|
13 | \maketitle
|
---|
14 |
|
---|
15 | \ifhtml
|
---|
16 | \chapter*{Front Matter\label{front}}
|
---|
17 | \fi
|
---|
18 |
|
---|
19 | \input{copyright}
|
---|
20 |
|
---|
21 | \begin{abstract}
|
---|
22 |
|
---|
23 | \noindent
|
---|
24 | This library reference manual documents Python's extensions for the
|
---|
25 | Macintosh. It should be used in conjunction with the
|
---|
26 | \citetitle[../lib/lib.html]{Python Library Reference}, which documents
|
---|
27 | the standard library and built-in types.
|
---|
28 |
|
---|
29 | This manual assumes basic knowledge about the Python language. For an
|
---|
30 | informal introduction to Python, see the
|
---|
31 | \citetitle[../tut/tut.html]{Python Tutorial}; the
|
---|
32 | \citetitle[../ref/ref.html]{Python Reference Manual} remains the
|
---|
33 | highest authority on syntactic and semantic questions. Finally, the
|
---|
34 | manual entitled \citetitle[../ext/ext.html]{Extending and Embedding
|
---|
35 | the Python Interpreter} describes how to add new extensions to Python
|
---|
36 | and how to embed it in other applications.
|
---|
37 |
|
---|
38 | \end{abstract}
|
---|
39 |
|
---|
40 | \tableofcontents
|
---|
41 |
|
---|
42 |
|
---|
43 | \input{using.tex} % Using Python on the Macintosh
|
---|
44 |
|
---|
45 |
|
---|
46 | \chapter{MacPython Modules \label{macpython-modules}}
|
---|
47 |
|
---|
48 | The following modules are only available on the Macintosh, and are
|
---|
49 | documented here:
|
---|
50 |
|
---|
51 | \localmoduletable
|
---|
52 |
|
---|
53 | \input{libmac}
|
---|
54 | \input{libmacfs}
|
---|
55 | \input{libmacic}
|
---|
56 | \input{libmacos}
|
---|
57 | \input{libmacostools}
|
---|
58 | \input{libmacui}
|
---|
59 | \input{libframework}
|
---|
60 | \input{libautogil}
|
---|
61 |
|
---|
62 | \input{scripting}
|
---|
63 |
|
---|
64 | \input{toolbox} % MacOS Toolbox Modules
|
---|
65 | \input{libcolorpicker}
|
---|
66 |
|
---|
67 | \input{undoc} % Undocumented Modules
|
---|
68 |
|
---|
69 | \appendix
|
---|
70 | \chapter{History and License}
|
---|
71 | \input{license}
|
---|
72 |
|
---|
73 | %
|
---|
74 | % The ugly "%begin{latexonly}" pseudo-environments are really just to
|
---|
75 | % keep LaTeX2HTML quiet during the \renewcommand{} macros; they're
|
---|
76 | % not really valuable.
|
---|
77 | %
|
---|
78 |
|
---|
79 | %begin{latexonly}
|
---|
80 | \renewcommand{\indexname}{Module Index}
|
---|
81 | %end{latexonly}
|
---|
82 | \input{modmac.ind} % Module Index
|
---|
83 |
|
---|
84 | %begin{latexonly}
|
---|
85 | \renewcommand{\indexname}{Index}
|
---|
86 | %end{latexonly}
|
---|
87 | \input{mac.ind} % Index
|
---|
88 |
|
---|
89 | \end{document}
|
---|