blob: f0b649a00779a2bb5c9ede45932de92cf40cb8dd [file] [log] [blame]
Guido van Rossum515834a1991-01-22 11:45:29 +00001% Format this file with latex.
2
Guido van Rossum8ec63501991-02-19 12:53:17 +00003%\documentstyle[garamond,11pt,myformat]{article}
Guido van Rossumd38b7641991-01-25 13:26:13 +00004\documentstyle[11pt,myformat]{article}
Guido van Rossum515834a1991-01-22 11:45:29 +00005
Guido van Rossumd38b7641991-01-25 13:26:13 +00006% A command to force the text after an item to start on a new line
7\newcommand{\itembreak}{
8 \mbox{}\\*[0mm]
9}
Guido van Rossum515834a1991-01-22 11:45:29 +000010
Guido van Rossum8ec63501991-02-19 12:53:17 +000011% A command to define a function item
12\newcommand{\funcitem}[2]{\item[#1(#2)]}
13
14% A command to define an exception item
15\newcommand{\excitem}[2]{
16\item[#1 = {\tt '#2'}]
17\itembreak
18}
19
Guido van Rossum515834a1991-01-22 11:45:29 +000020\title{\bf
21 Python Library Reference \\
22 (DRAFT)
23}
24
25\author{
26 Guido van Rossum \\
27 Dept. CST, CWI, Kruislaan 413 \\
28 1098 SJ Amsterdam, The Netherlands \\
29 E-mail: {\tt guido@cwi.nl}
30}
31
32\begin{document}
33
34\pagenumbering{roman}
35
36\maketitle
37
38\begin{abstract}
39
40\noindent
41This document describes the built-in types, exceptions and functions and
42the standard modules that come with the {\Python} system.
43It assumes basic knowledge about the {\Python} language.
44For an informal introduction to the language, see the Tutorial document.
45The Language Reference document (XXX not yet existing)
46gives a more formal reference to the language.
47
48\end{abstract}
49
50\pagebreak
51
52\tableofcontents
53
54\pagebreak
55
56\pagenumbering{arabic}
57
Guido van Rossum958ab3d1991-02-19 17:23:29 +000058\input{mod1.tex}
59\input{mod2.tex}
60\input{mod3.tex}
Guido van Rossum515834a1991-01-22 11:45:29 +000061
62\end{document}