blob: 10a6db501547023b0a7759d8e2560681faff9c36 [file] [log] [blame]
Guido van Rossum515834a1991-01-22 11:45:29 +00001% Format this file with latex.
2
Guido van Rossum4410c751991-06-04 20:22:18 +00003%\documentstyle[11pt,myformat]{article}
4\documentstyle[palatino,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
Guido van Rossuma9d5c221991-04-23 14:11:26 +000014% A command to define a data item
15\newcommand{\dataitem}[1]{\item[#1]}
16
Guido van Rossum8ec63501991-02-19 12:53:17 +000017% A command to define an exception item
18\newcommand{\excitem}[2]{
19\item[#1 = {\tt '#2'}]
20\itembreak
21}
22
Guido van Rossum515834a1991-01-22 11:45:29 +000023\title{\bf
Guido van Rossuma9d5c221991-04-23 14:11:26 +000024 Python Library Reference
Guido van Rossum515834a1991-01-22 11:45:29 +000025}
26
27\author{
28 Guido van Rossum \\
29 Dept. CST, CWI, Kruislaan 413 \\
30 1098 SJ Amsterdam, The Netherlands \\
31 E-mail: {\tt guido@cwi.nl}
32}
33
34\begin{document}
35
36\pagenumbering{roman}
37
38\maketitle
39
40\begin{abstract}
41
42\noindent
43This document describes the built-in types, exceptions and functions and
Guido van Rossum4410c751991-06-04 20:22:18 +000044the standard modules that come with the Python system.
45It assumes basic knowledge about the Python language.
Guido van Rossum515834a1991-01-22 11:45:29 +000046For an informal introduction to the language, see the Tutorial document.
47The Language Reference document (XXX not yet existing)
Guido van Rossuma9d5c221991-04-23 14:11:26 +000048gives a more formal definition of the language.
Guido van Rossum515834a1991-01-22 11:45:29 +000049
50\end{abstract}
51
52\pagebreak
53
54\tableofcontents
55
56\pagebreak
57
58\pagenumbering{arabic}
59
Guido van Rossum958ab3d1991-02-19 17:23:29 +000060\input{mod1.tex}
61\input{mod2.tex}
62\input{mod3.tex}
Guido van Rossum515834a1991-01-22 11:45:29 +000063
64\end{document}