[Python-checkins] CVS: distutils/doc/dist dist.tex,1.16,1.17

Greg Ward python-dev@python.org
Sat, 24 Jun 2000 20:14:16 -0700


Update of /cvsroot/python/distutils/doc/dist
In directory slayer.i.sourceforge.net:/tmp/cvs-serv23518

Modified Files:
	dist.tex 
Log Message:
Minor wording tweaks.
Kludged the extra-wide table that summarizes the manifest template language
  (works with LaTeX, but is an *evil* kludge and could well break LaTeX2HTML
  or similar...).

Index: dist.tex
===================================================================
RCS file: /cvsroot/python/distutils/doc/dist/dist.tex,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** dist.tex	2000/06/24 01:45:47	1.16
--- dist.tex	2000/06/25 03:14:13	1.17
***************
*** 169,173 ****
    file, e.g. a shared object (\file{.so}) file for CPython extensions on
    Unix, a DLL (given the \file{.pyd} extension) for CPython extensions
!   on Windows, or a Java class file for JPython extensions.
  \item[package] a module that contains other modules; typically contained
    in a directory in the filesystem and distinguished from other
--- 169,174 ----
    file, e.g. a shared object (\file{.so}) file for CPython extensions on
    Unix, a DLL (given the \file{.pyd} extension) for CPython extensions
!   on Windows, or a Java class file for JPython extensions.  (Note that
!   currently, the Distutils only handles C/C++ extensions for CPython.)
  \item[package] a module that contains other modules; typically contained
    in a directory in the filesystem and distinguished from other
***************
*** 218,223 ****
  do the right thing.  As we saw in section~\ref{simple-example} above,
  the setup script consists mainly of a call to \function{setup()}, and
! all information supplied to the Distutils is supplied as keyword
! arguments to \function{setup()}.
  
  Here's a slightly more involved example, which we'll follow for the next
--- 219,224 ----
  do the right thing.  As we saw in section~\ref{simple-example} above,
  the setup script consists mainly of a call to \function{setup()}, and
! most information supplied to the Distutils by the module developer is
! supplied as keyword arguments to \function{setup()}.
  
  Here's a slightly more involved example, which we'll follow for the next
***************
*** 719,726 ****
      {exclude all files under \var{dir} matching any of the listed patterns}
    \lineii{global-include \var{pat1} \var{pat2} ...}
!     {include all files anywhere in the source tree matching 
       any of the listed patterns}
    \lineii{global-exclude \var{pat1} \var{pat2} ...}
!     {exclude all files anywhere in the source tree matching 
       any of the listed patterns}
    \lineii{prune \var{dir}}{exclude all files under \var{dir}}
--- 720,727 ----
      {exclude all files under \var{dir} matching any of the listed patterns}
    \lineii{global-include \var{pat1} \var{pat2} ...}
!     {include all files anywhere in the source tree matching\\&
       any of the listed patterns}
    \lineii{global-exclude \var{pat1} \var{pat2} ...}
!     {exclude all files anywhere in the source tree matching\\&
       any of the listed patterns}
    \lineii{prune \var{dir}}{exclude all files under \var{dir}}