blob: e7ef71ea4a7175eb69bc3c45ce8e436574693fae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
\documentstyle[twoside,11pt,myformat]{report}
%\includeonly{lib5}
\title{\bf
Python Library Reference
}
\author{
Guido van Rossum \\
Dept. CST, CWI, P.O. Box 94079 \\
1090 GB Amsterdam, The Netherlands \\
E-mail: {\tt guido@cwi.nl}
}
\date{19 November 1993 \\ Release 0.9.9.++} % XXX update before release!
% Tell \index to actually write the .idx file
\makeindex
\begin{document}
%\showthe\fam
%\showthe\ttfam
\pagenumbering{roman}
\maketitle
\begin{abstract}
\noindent
This document describes the built-in types, exceptions and functions
and the standard modules that come with the Python system. It assumes
basic knowledge about the Python language. For an informal
introduction to the language, see the {\em Python Tutorial}. The {\em
Python Reference Manual} gives a more formal definition of the
language.
\end{abstract}
\pagebreak
{
\parskip = 0mm
\tableofcontents
}
\pagebreak
\pagenumbering{arabic}
\include{lib1} % intro; built-in types, functions and exceptions
\include{lib2} % built-in modules
\include{lib3} % standard modules
\include{lib4} % Most OS'es; UNIX only; Amoeba only
\include{lib5} % STDWIN only; SGI machines only; SUNs only; AUDIO TOOLS
\input{lib.ind} % The index
\end{document}
|