diff options
author | Guido van Rossum <guido@python.org> | 1991-11-12 15:41:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-11-12 15:41:57 (GMT) |
commit | 19f1b8261efd9d0a30a7551d2e2a55288e92a6d6 (patch) | |
tree | 5dfa16d87c1c4d8614bc1b609cf7259c36861e28 /Doc | |
parent | 6d0b5a7880fcec6295274b1e260b85c3403a0861 (diff) | |
download | cpython-19f1b8261efd9d0a30a7551d2e2a55288e92a6d6.zip cpython-19f1b8261efd9d0a30a7551d2e2a55288e92a6d6.tar.gz cpython-19f1b8261efd9d0a30a7551d2e2a55288e92a6d6.tar.bz2 |
Renamed mod to lib; and split in 5 instead of 3 parts.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib.tex | 15 | ||||
-rw-r--r-- | Doc/lib/lib.tex | 15 |
2 files changed, 20 insertions, 10 deletions
diff --git a/Doc/lib.tex b/Doc/lib.tex index 10a6db5..dc7bcb1 100644 --- a/Doc/lib.tex +++ b/Doc/lib.tex @@ -1,7 +1,10 @@ % Format this file with latex. -%\documentstyle[11pt,myformat]{article} -\documentstyle[palatino,11pt,myformat]{article} +\documentstyle[myformat]{report} % To preview with xdvi + +% Support to leave changebars in... +\newcommand{\cbstart}{} +\newcommand{\cbend}{} % A command to force the text after an item to start on a new line \newcommand{\itembreak}{ @@ -57,8 +60,10 @@ gives a more formal definition of the language. \pagenumbering{arabic} -\input{mod1.tex} -\input{mod2.tex} -\input{mod3.tex} +\input{lib1.tex} % intro; built-in types, functions and exceptions +\input{lib2.tex} % built-in modules +\input{lib3.tex} % standard modules +\input{lib4.tex} % OS-dependent appendixes +\input{lib5.tex} % Graphics appendixes \end{document} diff --git a/Doc/lib/lib.tex b/Doc/lib/lib.tex index 10a6db5..dc7bcb1 100644 --- a/Doc/lib/lib.tex +++ b/Doc/lib/lib.tex @@ -1,7 +1,10 @@ % Format this file with latex. -%\documentstyle[11pt,myformat]{article} -\documentstyle[palatino,11pt,myformat]{article} +\documentstyle[myformat]{report} % To preview with xdvi + +% Support to leave changebars in... +\newcommand{\cbstart}{} +\newcommand{\cbend}{} % A command to force the text after an item to start on a new line \newcommand{\itembreak}{ @@ -57,8 +60,10 @@ gives a more formal definition of the language. \pagenumbering{arabic} -\input{mod1.tex} -\input{mod2.tex} -\input{mod3.tex} +\input{lib1.tex} % intro; built-in types, functions and exceptions +\input{lib2.tex} % built-in modules +\input{lib3.tex} % standard modules +\input{lib4.tex} % OS-dependent appendixes +\input{lib5.tex} % Graphics appendixes \end{document} |