[Python-checkins] distutils2: Did a little editing.

tarek.ziade python-checkins at python.org
Sat Oct 2 00:52:19 CEST 2010


tarek.ziade pushed 7291a92d6de3 to distutils2:

http://hg.python.org/distutils2/rev/7291a92d6de3
changeset:   709:7291a92d6de3
user:        Derek McTavish Mounce <d.mounce at silkseed.com>
date:        Wed Sep 29 23:24:43 2010 -0400
summary:     Did a little editing.
files:       docs/source/distutils/setupscript.rst

diff --git a/docs/source/distutils/setupscript.rst b/docs/source/distutils/setupscript.rst
--- a/docs/source/distutils/setupscript.rst
+++ b/docs/source/distutils/setupscript.rst
@@ -5,12 +5,12 @@
 ************************
 
 The setup script is the center of all activity in building, distributing, and
-installing modules using the Distutils.  The main purpose of the setup script is
-to describe your module distribution to the Distutils, so that the various
+installing modules using Distutils.  The main purpose of the setup script is
+to describe your module distribution to Distutils, so that the various
 commands that operate on your modules do the right thing.  As we saw in section
-:ref:`distutils-simple-example` above, the setup script consists mainly of a
-call to :func:`setup`, and most information supplied to the Distutils by the
-module developer is supplied as keyword arguments to :func:`setup`.
+:ref:`distutils-simple-example`, the setup script consists mainly of a
+call to :func:`setup` where the most information is supplied as 
+keyword arguments to :func:`setup`.
 
 Here's a slightly more involved example, which we'll follow for the next couple
 of sections: a setup script that could be used for Distutils2 itself::
@@ -32,8 +32,8 @@
 
 There are only two differences between this and the trivial one-file
 distribution presented in section :ref:`distutils-simple-example`: more
-metadata, and the specification of pure Python modules by package, rather than
-by module.  This is important since the Distutils consist of a couple of dozen
+metadata and the specification of pure Python modules by package rather than
+by module.  This is important since Ristutils consist of a couple of dozen
 modules split into (so far) two packages; an explicit list of every module
 would be tedious to generate and difficult to maintain.  For more information
 on the additional metadata, see section :ref:`metadata`.

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list