diff options
Diffstat (limited to 'doc/mod.tex')
| -rw-r--r-- | doc/mod.tex | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/doc/mod.tex b/doc/mod.tex new file mode 100644 index 0000000..c2d2355 --- /dev/null +++ b/doc/mod.tex @@ -0,0 +1,62 @@ +% Format this file with latex. + +%\documentstyle[garamond,11pt,myformat]{article} +\documentstyle[11pt,myformat]{article} + +% A command to force the text after an item to start on a new line +\newcommand{\itembreak}{ + \mbox{}\\*[0mm] +} + +% A command to define a function item +\newcommand{\funcitem}[2]{\item[#1(#2)]} + +% A command to define an exception item +\newcommand{\excitem}[2]{ +\item[#1 = {\tt '#2'}] +\itembreak +} + +\title{\bf + Python Library Reference \\ + (DRAFT) +} + +\author{ + Guido van Rossum \\ + Dept. CST, CWI, Kruislaan 413 \\ + 1098 SJ Amsterdam, The Netherlands \\ + E-mail: {\tt [email protected]} +} + +\begin{document} + +\pagenumbering{roman} + +\maketitle + +\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 Tutorial document. +The Language Reference document (XXX not yet existing) +gives a more formal reference to the language. + +\end{abstract} + +\pagebreak + +\tableofcontents + +\pagebreak + +\pagenumbering{arabic} + +\input{mod1.tex} +\input{mod2.tex} +\input{mod3.tex} + +\end{document} |
