Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1bbe329

Browse files
committed
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...).
1 parent 992c8f9 commit 1bbe329

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

Doc/dist/dist.tex

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ \subsection{General Python terminology}
168168
Typically contained in a single dynamically loadable pre-compiled
169169
file, e.g. a shared object (\file{.so}) file for CPython extensions on
170170
Unix, a DLL (given the \file{.pyd} extension) for CPython extensions
171-
on Windows, or a Java class file for JPython extensions.
171+
on Windows, or a Java class file for JPython extensions. (Note that
172+
currently, the Distutils only handles C/C++ extensions for CPython.)
172173
\item[package] a module that contains other modules; typically contained
173174
in a directory in the filesystem and distinguished from other
174175
directories by the presence of a file \file{\_\_init\_\_.py}.
@@ -217,8 +218,8 @@ \section{Writing the Setup Script}
217218
the Distutils, so that the various commands that operate on your modules
218219
do the right thing. As we saw in section~\ref{simple-example} above,
219220
the setup script consists mainly of a call to \function{setup()}, and
220-
all information supplied to the Distutils is supplied as keyword
221-
arguments to \function{setup()}.
221+
most information supplied to the Distutils by the module developer is
222+
supplied as keyword arguments to \function{setup()}.
222223

223224
Here's a slightly more involved example, which we'll follow for the next
224225
couple of sections: the Distutils' own setup script. (Keep in mind that
@@ -718,10 +719,10 @@ \subsection{Creating a source distribution: the \protect\command{sdist} command}
718719
\lineii{recursive-exclude \var{dir} \var{pat1} \var{pat2} ...}
719720
{exclude all files under \var{dir} matching any of the listed patterns}
720721
\lineii{global-include \var{pat1} \var{pat2} ...}
721-
{include all files anywhere in the source tree matching
722+
{include all files anywhere in the source tree matching\\&
722723
any of the listed patterns}
723724
\lineii{global-exclude \var{pat1} \var{pat2} ...}
724-
{exclude all files anywhere in the source tree matching
725+
{exclude all files anywhere in the source tree matching\\&
725726
any of the listed patterns}
726727
\lineii{prune \var{dir}}{exclude all files under \var{dir}}
727728
\lineii{graft \var{dir}}{include all files under \var{dir}}

0 commit comments

Comments
 (0)