summaryrefslogtreecommitdiffstats
path: root/Doc/dist
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-25 03:14:13 (GMT)
committerGreg Ward <gward@python.net>2000-06-25 03:14:13 (GMT)
commit1bbe32982d57878b1acf9e55eccd98f2ccb9ccf3 (patch)
tree757541347256fddb494ba8bec57e880febb7b370 /Doc/dist
parent992c8f9dabadfe88147f9afa6e878ce1c645ce31 (diff)
downloadcpython-1bbe32982d57878b1acf9e55eccd98f2ccb9ccf3.zip
cpython-1bbe32982d57878b1acf9e55eccd98f2ccb9ccf3.tar.gz
cpython-1bbe32982d57878b1acf9e55eccd98f2ccb9ccf3.tar.bz2
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...).
Diffstat (limited to 'Doc/dist')
-rw-r--r--Doc/dist/dist.tex11
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex
index d29d805..58b88d5 100644
--- a/Doc/dist/dist.tex
+++ b/Doc/dist/dist.tex
@@ -168,7 +168,8 @@ following glossary of common Python terms:
Typically contained in a single dynamically loadable pre-compiled
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.
+ 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
directories by the presence of a file \file{\_\_init\_\_.py}.
@@ -217,8 +218,8 @@ purpose of the setup script is to describe your module distribution to
the Distutils, so that the various commands that operate on your modules
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()}.
+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
couple of sections: the Distutils' own setup script. (Keep in mind that
@@ -718,10 +719,10 @@ The manifest template commands are:
\lineii{recursive-exclude \var{dir} \var{pat1} \var{pat2} ...}
{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
+ {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
+ {exclude all files anywhere in the source tree matching\\&
any of the listed patterns}
\lineii{prune \var{dir}}{exclude all files under \var{dir}}
\lineii{graft \var{dir}}{include all files under \var{dir}}