@@ -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}
217218the Distutils, so that the various commands that operate on your modules
218219do the right thing. As we saw in section~\ref {simple-example } above,
219220the 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
223224Here's a slightly more involved example, which we'll follow for the next
224225couple 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