diff options
author | Guido van Rossum <guido@python.org> | 1995-03-28 13:35:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-28 13:35:14 (GMT) |
commit | ecde781dd10cccf97688811743dcda7b2a8d25ae (patch) | |
tree | 9c883726ce1f433c4ced05f9098e78d18919b7a3 /Doc/lib.tex | |
parent | 557ed94ebbad49ec0f1ffa1b1b911a4ba1162c51 (diff) | |
download | cpython-ecde781dd10cccf97688811743dcda7b2a8d25ae.zip cpython-ecde781dd10cccf97688811743dcda7b2a8d25ae.tar.gz cpython-ecde781dd10cccf97688811743dcda7b2a8d25ae.tar.bz2 |
restructured library manual accordiung to functional group
Diffstat (limited to 'Doc/lib.tex')
-rw-r--r-- | Doc/lib.tex | 77 |
1 files changed, 42 insertions, 35 deletions
diff --git a/Doc/lib.tex b/Doc/lib.tex index 8d6db1c..bf0f3ad 100644 --- a/Doc/lib.tex +++ b/Doc/lib.tex @@ -22,8 +22,8 @@ \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 +This document describes the built-in and standard types, exceptions, +functions and 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 @@ -51,52 +51,58 @@ language. \input{libexcs} \input{libfuncs} -\input{libmods} % Built-in modules +\input{libpython} % Python Services \input{libsys} -\input{libbltin} % really __builtin__ +\input{libtypes2} % types is already taken :-( +\input{libtraceback} +\input{libpickle} +\input{libshelve} +\input{libcopy} +\input{libmarshal} \input{libimp} +\input{libbltin} % really __builtin__ \input{libmain} % really __main__ -\input{libarray} -\input{libmath} -\input{libtime} + +\input{libstrings} % String Services +\input{libstring} \input{libregex} -\input{libmarshal} +\input{libregsub} \input{libstruct} -\input{libstd} % Standard Modules -\input{libgetopt} -\input{libos} +\input{libmisc} % Miscellaneous Services +\input{libmath} \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{libarray} -\input{libpdb} % The Python Debugger +\input{liballos} % Generic Operating System Services +\input{libos} +\input{libtime} +\input{libgetopt} +\input{libtempfile} -\input{libprofile} % The Python Profiler +\input{libsomeos} % Optional Operating System Services +\input{libsignal} +\input{libsocket} +\input{libselect} +\input{libthread} -\input{libunix} % UNIX ONLY +\input{libunix} % UNIX Specific Services +\input{libposix} +\input{libppath} % == posixpath +\input{libpwd} +\input{libgrp} \input{libdbm} -\input{libfcntl} \input{libgdbm} -\input{libgrp} -\input{libposix} +\input{libtermios} +\input{libfcntl} \input{libposixfile} -\input{libppath} % really posixpath -\input{libpwd} -\input{libselect} -\input{libsignal} -\input{libsocket} -\input{libthread} -\input{libwww} % WWW EXTENSIONS +\input{libpdb} % The Python Debugger + +\input{libprofile} % The Python Profiler + +\input{libwww} % Internet and WWW Services \input{libcgi} \input{liburllib} \input{libhttplib} @@ -109,13 +115,14 @@ language. \input{librfc822} \input{libmimetools} -\input{libmm} % MULTIMEDIA EXTENSIONS +\input{libmm} % Multimedia Services \input{libaudioop} \input{libimageop} +\input{libaifc} \input{libjpeg} \input{librgbimg} -\input{libcrypto} % CRYPTOGRAPHIC EXTENSIONS +\input{libcrypto} % Cryptographic Services \input{libmd5} \input{libmpz} \input{librotor} |