[Distutils] Little tiny patch

Harry Henry Gebel hgebel@inet.net
Mon, 24 Apr 2000 05:19:02 -0400


--rfwNdt5cNUUjB/69
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

This correct a small error in the distutils.core.setup docstring where it
refers to class Distribution as still being in distutils.core .

-- 
Harry Henry Gebel, Senior Developer, Landon House SBS
West Dover Hundred, Delaware

"Why do you look for the living among the dead?
He is not here, but has risen." 
Luke 24:5 (NRSV)

--rfwNdt5cNUUjB/69
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="setup-doc.patch"

? build
? MANIFEST
? tarballs.patch
? setup-doc.patch
Index: distutils/core.py
===================================================================
RCS file: /projects/cvsroot/distutils/distutils/core.py,v
retrieving revision 1.32
diff -u -r1.32 core.py
--- core.py	2000/04/22 03:20:49	1.32
+++ core.py	2000/04/24 09:15:23
@@ -36,9 +36,9 @@
 
        The Distribution instance might be an instance of a class
        supplied via the 'distclass' keyword argument to 'setup'; if no
-       such class is supplied, then the 'Distribution' class (also in
-       this module) is instantiated.  All other arguments to 'setup'
-       (except for 'cmdclass') are used to set attributes of the
+       such class is supplied, then the 'Distribution' class (found in
+       module distutils.dist) is instantiated.  All other arguments to
+       'setup' (except for 'cmdclass') are used to set attributes of the
        Distribution instance.
 
        The 'cmdclass' argument, if supplied, is a dictionary mapping

--rfwNdt5cNUUjB/69--