blob: 513f81a2e79dd9ff31276b646f31dba31a4e1896 [file] [log] [blame]
Guido van Rossum37953781992-04-06 14:04:04 +00001\documentstyle[twoside,11pt,myformat]{report}
Guido van Rossum19f1b821991-11-12 15:41:57 +00002
Guido van Rossum86751151995-02-28 17:14:32 +00003% NOTE: this file controls which chapters/sections of the library
4% manual are actually printed. It is easy to customize your manual
5% by commenting out sections that you're not interested in.
6
Guido van Rossum6938f061994-08-01 12:22:53 +00007\title{Python Library Reference}
Guido van Rossum515834a1991-01-22 11:45:29 +00008
Guido van Rossum16cd7f91994-10-06 10:29:26 +00009\input{boilerplate}
Guido van Rossum83eb9621993-11-23 16:28:45 +000010
Guido van Rossum6938f061994-08-01 12:22:53 +000011\makeindex % tell \index to actually write the .idx file
12
Guido van Rossum1230c081992-01-07 16:40:44 +000013
Guido van Rossum515834a1991-01-22 11:45:29 +000014\begin{document}
Guido van Rossum6938f061994-08-01 12:22:53 +000015
Guido van Rossum515834a1991-01-22 11:45:29 +000016\pagenumbering{roman}
17
18\maketitle
19
Guido van Rossum16cd7f91994-10-06 10:29:26 +000020\input{copyright}
21
Guido van Rossum515834a1991-01-22 11:45:29 +000022\begin{abstract}
23
24\noindent
Guido van Rossum2ddd9781995-03-30 16:01:33 +000025Python is an extensible, interpreted, object-oriented programming
26language. It supports a wide range of applications, from simple text
27processing scripts to interactive WWW browsers.
28
29While the {\em Python Reference Manual} describes the exact syntax and
30semantics of the language, it does not describe the standard library
31that is distributed with the language, and which greatly enhances its
32immediate usability. This library contains built-in modules (written
33in C) that provide access to system functionality such as file I/O
34that would otherwise be inaccessible to Python programmers, as well as
35modules written in Python that provide standardized solutions for many
36problems that occur in everyday programming. Some of these modules
37are explicitly designed to encourage and enhance the portability of
38Python programs.
39
40This library reference manual documents Python's standard library, as
41well as many optional library modules (which may or may not be
42available, depending on whether the underlying platform supports them
43and on the configuration choices made at compile time). It also
44documents the standard types of the language and its built-in
45functions and exceptions, many of which are not or incompletely
46documented in the Reference Manual.
47
48This manual assumes basic knowledge about the Python language. For an
49informal introduction to Python, see the {\em Python Tutorial}; the
50Python Reference Manual remains the highest authority on syntactic and
51semantic questions. Finally, the manual entitled {\em Extending and
52Embedding the Python Interpreter} describes how to add new extensions
53to Python and how to embed it in other applications.
Guido van Rossum515834a1991-01-22 11:45:29 +000054
55\end{abstract}
56
57\pagebreak
58
Guido van Rossum9b573851992-01-29 14:46:35 +000059{
60\parskip = 0mm
Guido van Rossum515834a1991-01-22 11:45:29 +000061\tableofcontents
Guido van Rossum9b573851992-01-29 14:46:35 +000062}
Guido van Rossum515834a1991-01-22 11:45:29 +000063
64\pagebreak
65
66\pagenumbering{arabic}
Guido van Rossumbe3eb961992-03-24 13:34:33 +000067
Guido van Rossum6938f061994-08-01 12:22:53 +000068 % Chapter title:
69
70\input{libintro} % Introduction
71
72\input{libobjs} % Built-in Types, Exceptions and Functions
73\input{libtypes}
74\input{libexcs}
75\input{libfuncs}
76
Guido van Rossumecde7811995-03-28 13:35:14 +000077\input{libpython} % Python Services
Guido van Rossum6938f061994-08-01 12:22:53 +000078\input{libsys}
Guido van Rossumecde7811995-03-28 13:35:14 +000079\input{libtypes2} % types is already taken :-(
80\input{libtraceback}
Guido van Rossumd1883581995-02-15 15:53:08 +000081\input{libpickle}
82\input{libshelve}
83\input{libcopy}
Guido van Rossumecde7811995-03-28 13:35:14 +000084\input{libmarshal}
85\input{libimp}
Guido van Rossumca814701995-10-11 17:32:29 +000086\input{libparser}
Guido van Rossumecde7811995-03-28 13:35:14 +000087\input{libbltin} % really __builtin__
88\input{libmain} % really __main__
89
90\input{libstrings} % String Services
91\input{libstring}
92\input{libregex}
93\input{libregsub}
94\input{libstruct}
95
96\input{libmisc} % Miscellaneous Services
97\input{libmath}
98\input{librand}
99\input{libwhrandom}
100\input{libarray}
101
102\input{liballos} % Generic Operating System Services
103\input{libos}
104\input{libtime}
105\input{libgetopt}
Guido van Rossumdc46c7f1995-03-01 15:38:16 +0000106\input{libtempfile}
Guido van Rossumecde7811995-03-28 13:35:14 +0000107
108\input{libsomeos} % Optional Operating System Services
109\input{libsignal}
110\input{libsocket}
111\input{libselect}
112\input{libthread}
113
114\input{libunix} % UNIX Specific Services
115\input{libposix}
116\input{libppath} % == posixpath
117\input{libpwd}
118\input{libgrp}
Guido van Rossum5c6e3731996-04-10 16:18:20 +0000119\input{libcrypt}
Guido van Rossumecde7811995-03-28 13:35:14 +0000120\input{libdbm}
121\input{libgdbm}
122\input{libtermios}
123\input{libfcntl}
124\input{libposixfile}
Guido van Rossumfbe34fa1995-10-09 20:49:57 +0000125\input{libsyslog}
Guido van Rossumdf804f81995-03-02 12:38:39 +0000126
127\input{libpdb} % The Python Debugger
128
129\input{libprofile} % The Python Profiler
Guido van Rossum6938f061994-08-01 12:22:53 +0000130
Guido van Rossumecde7811995-03-28 13:35:14 +0000131\input{libwww} % Internet and WWW Services
Guido van Rossuma12ef941995-02-27 17:53:25 +0000132\input{libcgi}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +0000133\input{liburllib}
134\input{libhttplib}
Guido van Rossum817a8421995-02-16 16:28:22 +0000135\input{libftplib}
136\input{libgopherlib}
Guido van Rossum817a8421995-02-16 16:28:22 +0000137\input{libnntplib}
Guido van Rossum817a8421995-02-16 16:28:22 +0000138\input{liburlparse}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +0000139\input{libhtmllib}
140\input{libsgmllib}
141\input{librfc822}
142\input{libmimetools}
Jack Jansen4549b131995-08-29 11:30:24 +0000143\input{libbinascii}
Guido van Rossum817a8421995-02-16 16:28:22 +0000144
Guido van Rossumecde7811995-03-28 13:35:14 +0000145\input{libmm} % Multimedia Services
Guido van Rossum6938f061994-08-01 12:22:53 +0000146\input{libaudioop}
147\input{libimageop}
Guido van Rossumecde7811995-03-28 13:35:14 +0000148\input{libaifc}
Guido van Rossum6938f061994-08-01 12:22:53 +0000149\input{libjpeg}
150\input{librgbimg}
151
Guido van Rossumecde7811995-03-28 13:35:14 +0000152\input{libcrypto} % Cryptographic Services
Guido van Rossum6938f061994-08-01 12:22:53 +0000153\input{libmd5}
154\input{libmpz}
155\input{librotor}
156
157%\input{libamoeba} % AMOEBA ONLY
158
Guido van Rossum86751151995-02-28 17:14:32 +0000159\input{libmac} % MACINTOSH ONLY
Guido van Rossumdc46c7f1995-03-01 15:38:16 +0000160\input{libctb}
161\input{libmacconsole}
Guido van Rossum85c4ff21995-03-07 10:12:11 +0000162\input{libmacdnr}
Guido van Rossumdc46c7f1995-03-01 15:38:16 +0000163\input{libmacfs}
Jack Jansenebed45f1995-08-14 13:40:05 +0000164\input{libmacos}
Jack Jansenda53c521995-10-10 14:43:20 +0000165\input{libmacostools}
Guido van Rossumdc46c7f1995-03-01 15:38:16 +0000166\input{libmactcp}
167\input{libmacspeech}
Jack Jansenda53c521995-10-10 14:43:20 +0000168\input{libmacui}
Guido van Rossum6938f061994-08-01 12:22:53 +0000169
170\input{libstdwin} % STDWIN ONLY
171
172\input{libsgi} % SGI IRIX ONLY
173\input{libal}
174%\input{libaudio}
Sjoerd Mullenderffd6de11995-03-28 11:56:52 +0000175\input{libcd}
Guido van Rossum6938f061994-08-01 12:22:53 +0000176\input{libfl}
177\input{libfm}
178\input{libgl}
179\input{libimgfile}
180%\input{libpanel}
181
182\input{libsun} % SUNOS ONLY
183
184\input{lib.ind} % Index
Guido van Rossum515834a1991-01-22 11:45:29 +0000185
186\end{document}