1992-03-31 15:12:06 -04:00
|
|
|
\documentstyle[twoside,a4wide,11pt,myformat]{report}
|
|
|
|
% ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
% If you have trouble finding these style files, any of the pointed-at
|
|
|
|
% style options are optional and may be taken out.
|
|
|
|
% But "myformat.sty" should be found in the same directory as this file!
|
|
|
|
% Also, "myformat" should be last since it corrects a few style params.
|
1991-02-19 08:53:17 -04:00
|
|
|
|
1991-01-22 07:45:29 -04:00
|
|
|
\title{\bf
|
1991-04-23 11:11:26 -03:00
|
|
|
Python Library Reference
|
1991-01-22 07:45:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
\author{
|
|
|
|
Guido van Rossum \\
|
|
|
|
Dept. CST, CWI, Kruislaan 413 \\
|
|
|
|
1098 SJ Amsterdam, The Netherlands \\
|
|
|
|
E-mail: {\tt guido@cwi.nl}
|
|
|
|
}
|
|
|
|
|
1992-01-16 13:36:16 -04:00
|
|
|
% Tell \index to actually write the .idx file
|
1992-01-07 12:40:44 -04:00
|
|
|
\makeindex
|
|
|
|
|
1991-01-22 07:45:29 -04:00
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
\pagenumbering{roman}
|
|
|
|
|
|
|
|
\maketitle
|
|
|
|
|
|
|
|
\begin{abstract}
|
|
|
|
|
|
|
|
\noindent
|
1991-11-25 13:28:03 -04:00
|
|
|
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.
|
1991-01-22 07:45:29 -04:00
|
|
|
|
|
|
|
\end{abstract}
|
|
|
|
|
|
|
|
\pagebreak
|
|
|
|
|
1992-01-29 10:46:35 -04:00
|
|
|
{
|
|
|
|
\parskip = 0mm
|
1991-01-22 07:45:29 -04:00
|
|
|
\tableofcontents
|
1992-01-29 10:46:35 -04:00
|
|
|
}
|
1991-01-22 07:45:29 -04:00
|
|
|
|
|
|
|
\pagebreak
|
|
|
|
|
|
|
|
\pagenumbering{arabic}
|
|
|
|
|
1992-03-24 09:34:33 -04:00
|
|
|
\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
|
|
|
|
|
|
|
|
\input{lib.ind} % The index
|
1991-01-22 07:45:29 -04:00
|
|
|
|
|
|
|
\end{document}
|