summaryrefslogtreecommitdiffstats
path: root/Doc/lib.tex
blob: 4194dbf378a93c0b4e6963ac4d2f989edb530fc7 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
\documentstyle[twoside,11pt,myformat]{report}

% NOTE: this file controls which chapters/sections of the library
% manual are actually printed.  It is easy to customize your manual
% by commenting out sections that you're not interested in.

\title{Python Library Reference}

\input{boilerplate}

\makeindex			% tell \index to actually write the .idx file


\begin{document}

\pagenumbering{roman}

\maketitle

\input{copyright}

\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}

				% Chapter title:

\input{libintro}		% Introduction

\input{libobjs}			% Built-in Types, Exceptions and Functions
\input{libtypes}
\input{libexcs}
\input{libfuncs}

\input{libmods}			% Built-in modules
\input{libsys}
\input{libbltin}		% really __builtin__
\input{libimp}
\input{libmain}			% really __main__
\input{libarray}
\input{libmath}
\input{libtime}
\input{libregex}
\input{libmarshal}
\input{libstruct}

\input{libstd}			% Standard Modules
\input{libgetopt}
\input{libos}
\input{librand}
\input{libregsub}
\input{libstring}
\input{libwhrandom}
\input{libaifc}
\input{libpickle}
\input{libshelve}
\input{libcopy}
\input{libtypes2}		% types is already taken :-(
\input{libtempfile}
\input{libtraceback}

\input{libpdb}			% The Python Debugger

\input{libprofile}		% The Python Profiler

\input{libunix}			% UNIX ONLY
\input{libdbm}
\input{libfcntl}
\input{libgdbm}
\input{libgrp}
\input{libposix}
\input{libposixfile}
\input{libppath}		% really posixpath
\input{libpwd}
\input{libselect}
\input{libsignal}
\input{libsocket}
\input{libthread}

\input{libwww}			% WWW EXTENSIONS
\input{libcgi}
\input{libftplib}
\input{libgopherlib}
\input{libhtmllib}
\input{libhttplib}
\input{libmimetools}
\input{libnntplib}
\input{librfc822}
\input{libsgmllib}
\input{liburllib}
\input{liburlparse}

\input{libmm}			% MULTIMEDIA EXTENSIONS
\input{libaudioop}
\input{libimageop}
\input{libjpeg}
\input{librgbimg}

\input{libcrypto}		% CRYPTOGRAPHIC EXTENSIONS
\input{libmd5}
\input{libmpz}
\input{librotor}

%\input{libamoeba}		% AMOEBA ONLY

\input{libmac}			% MACINTOSH ONLY
\input{libctb}
\input{libmacconsole}
\input{libmacdnr}
\input{libmacfs}
\input{libmactcp}
\input{libmacspeech}

\input{libstdwin}		% STDWIN ONLY

\input{libsgi}			% SGI IRIX ONLY
\input{libal}
%\input{libaudio}
\input{libfl}
\input{libfm}
\input{libgl}
\input{libimgfile}
%\input{libpanel}

\input{libsun}			% SUNOS ONLY

\input{lib.ind}			% Index

\end{document}