Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: b022eb54e6544499c9f689a3b4343380d28c8852 authored by cvs2svn on 22 March 1995, 12:27:16 UTC
This commit was manufactured by cvs2svn to create tag 'r12beta4'.
Tip revision: b022eb5
lib.tex
\documentstyle[twoside,11pt,myformat]{report}

% NOTE: this file controls which chapters/sections of the library
% manual are actually printed.  It is easy to customize your manual
% by commenting out sections that you're not interested in.

\title{Python Library Reference}

\input{boilerplate}

\makeindex			% tell \index to actually write the .idx file


\begin{document}

\pagenumbering{roman}

\maketitle

\input{copyright}

\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 {\em Python Tutorial}.  The {\em
Python Reference Manual} gives a more formal definition of the
language.

\end{abstract}

\pagebreak

{
\parskip = 0mm
\tableofcontents
}

\pagebreak

\pagenumbering{arabic}

				% Chapter title:

\input{libintro}		% Introduction

\input{libobjs}			% Built-in Types, Exceptions and Functions
\input{libtypes}
\input{libexcs}
\input{libfuncs}

\input{libmods}			% Built-in modules
\input{libsys}
\input{libbltin}		% really __builtin__
\input{libimp}
\input{libmain}			% really __main__
\input{libarray}
\input{libmath}
\input{libtime}
\input{libregex}
\input{libmarshal}
\input{libstruct}

\input{libstd}			% Standard Modules
\input{libgetopt}
\input{libos}
\input{librand}
\input{libregsub}
\input{libstring}
\input{libwhrandom}
\input{libaifc}
\input{libpickle}
\input{libshelve}
\input{libcopy}
\input{libtypes2}		% types is already taken :-(
\input{libtempfile}
\input{libtraceback}

\input{libpdb}			% The Python Debugger

\input{libprofile}		% The Python Profiler

\input{libunix}			% UNIX ONLY
\input{libdbm}
\input{libfcntl}
\input{libgdbm}
\input{libgrp}
\input{libposix}
\input{libposixfile}
\input{libppath}		% really posixpath
\input{libpwd}
\input{libselect}
\input{libsignal}
\input{libsocket}
\input{libthread}

\input{libwww}			% WWW EXTENSIONS
\input{libcgi}
\input{libftplib}
\input{libgopherlib}
\input{libhtmllib}
\input{libhttplib}
\input{libmimetools}
\input{libnntplib}
\input{librfc822}
\input{libsgmllib}
\input{liburllib}
\input{liburlparse}

\input{libmm}			% MULTIMEDIA EXTENSIONS
\input{libaudioop}
\input{libimageop}
\input{libjpeg}
\input{librgbimg}

\input{libcrypto}		% CRYPTOGRAPHIC EXTENSIONS
\input{libmd5}
\input{libmpz}
\input{librotor}

%\input{libamoeba}		% AMOEBA ONLY

\input{libmac}			% MACINTOSH ONLY
\input{libctb}
\input{libmacconsole}
\input{libmacdnr}
\input{libmacfs}
\input{libmactcp}
\input{libmacspeech}

\input{libstdwin}		% STDWIN ONLY

\input{libsgi}			% SGI IRIX ONLY
\input{libal}
%\input{libaudio}
\input{libfl}
\input{libfm}
\input{libgl}
\input{libimgfile}
%\input{libpanel}

\input{libsun}			% SUNOS ONLY

\input{lib.ind}			% Index

\end{document}
back to top