[Python-checkins] CVS: python/dist/src/Doc/lib language.tex,NONE,1.1 lib.tex,1.158,1.159 libpython.tex,1.13,1.14

Fred L. Drake python-dev@python.org
Thu, 3 Aug 2000 14:18:21 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv13403/lib

Modified Files:
	lib.tex libpython.tex 
Added Files:
	language.tex 
Log Message:

Break the "Python Services" chapter into two: "Python Runtime Services"
(still at the start of the manual), and "Python Language Services" (late
in the manual).  Moved "Restricted Execution" to just before "Python
Language Services."


--- NEW FILE ---
\chapter{Python Language Services
         \label{language}}

Python provides a number of modules to assist in working with the
Python language.  These module support tokenizing, parsing, syntax
analysis, bytecode disassembly, and various other facilities.

These modules include:

\localmoduletable

Index: lib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/lib.tex,v
retrieving revision 1.158
retrieving revision 1.159
diff -C2 -r1.158 -r1.159
*** lib.tex	2000/07/12 04:22:53	1.158
--- lib.tex	2000/08/03 21:18:18	1.159
***************
*** 72,76 ****
  \input{libfuncs}
  
! \input{libpython}		% Python Services
  \input{libsys}
  \input{libgc}
--- 72,76 ----
  \input{libfuncs}
  
! \input{libpython}		% Python Runtime Services
  \input{libsys}
  \input{libgc}
***************
*** 88,105 ****
  \input{libimp}
  %\input{libni}
- \input{libparser}
- \input{libsymbol}
- \input{libtoken}
- \input{libkeyword}
- \input{libtokenize}
- \input{libtabnanny}
- \input{libpyclbr}
  \input{libcode}
  \input{libcodeop}
  \input{libpprint}
  \input{librepr}
- \input{libpycompile}		% really py_compile
- \input{libcompileall}
- \input{libdis}
  \input{libnew}
  \input{libsite}
--- 88,95 ----
***************
*** 244,251 ****
  \input{libpyexpat}
  
- \input{librestricted}           % Restricted Execution
- \input{librexec}
- \input{libbastion}
- 
  \input{libmm}			% Multimedia Services
  \input{libaudioop}
--- 234,237 ----
***************
*** 265,268 ****
--- 251,270 ----
  \input{libmpz}
  \input{librotor}
+ 
+ \input{librestricted}           % Restricted Execution
+ \input{librexec}
+ \input{libbastion}
+ 
+ \input{language}		% Python Language Services
+ \input{libparser}
+ \input{libsymbol}
+ \input{libtoken}
+ \input{libkeyword}
+ \input{libtokenize}
+ \input{libtabnanny}
+ \input{libpyclbr}
+ \input{libpycompile}		% really py_compile
+ \input{libcompileall}
+ \input{libdis}
  
  %\input{libamoeba}		% AMOEBA ONLY

Index: libpython.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpython.tex,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** libpython.tex	1998/07/23 17:58:39	1.13
--- libpython.tex	2000/08/03 21:18:18	1.14
***************
*** 1,4 ****
! \chapter{Python Services}
! \label{python}
  
  The modules described in this chapter provide a wide range of services
--- 1,4 ----
! \chapter{Python Runtime Services
!          \label{python}}
  
  The modules described in this chapter provide a wide range of services