Files
cpython/Lib/distutils
Benjamin Peterson 70a905db3b Merged revisions 68440 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r68440 | benjamin.peterson | 2009-01-08 22:11:44 -0600 (Thu, 08 Jan 2009) | 30 lines

  Merged revisions 68167,68276,68292-68293,68344 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r68167 | vinay.sajip | 2009-01-02 12:53:04 -0600 (Fri, 02 Jan 2009) | 1 line

    Minor documentation changes relating to NullHandler, the module used for handlers and references to ConfigParser.
  ........
    r68276 | tarek.ziade | 2009-01-03 18:04:49 -0600 (Sat, 03 Jan 2009) | 1 line

    fixed #1702551: distutils sdist was not pruning VCS directories under win32
  ........
    r68292 | skip.montanaro | 2009-01-04 04:36:58 -0600 (Sun, 04 Jan 2009) | 3 lines

    If user configures --without-gcc give preference to $CC instead of blindly
    assuming the compiler will be "cc".
  ........
    r68293 | tarek.ziade | 2009-01-04 04:37:52 -0600 (Sun, 04 Jan 2009) | 1 line

    using clearer syntax
  ........
    r68344 | marc-andre.lemburg | 2009-01-05 13:43:35 -0600 (Mon, 05 Jan 2009) | 7 lines

    Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration
    into the extern "C" section.

    Add a few more comments and apply some minor edits to make the file contents
    fit the original structure again.
  ........
................
2009-01-09 04:17:34 +00:00
..
2008-12-03 17:15:13 +00:00
2002-11-13 13:26:59 +00:00
2008-01-06 21:13:42 +00:00

This directory contains only a subset of the Distutils, specifically
the Python modules in the 'distutils' and 'distutils.command'
packages.  This is all you need to distribute and install Python
modules using the Distutils.  There is also a separately packaged
standalone version of the Distutils available for people who want to
upgrade the Distutils without upgrading Python, available from the
Distutils web page:

    http://www.python.org/sigs/distutils-sig/

The standalone version includes all of the code in this directory,
plus documentation, test scripts, examples, etc.

The Distutils documentation is divided into two documents, "Installing
Python Modules", which explains how to install Python packages, and
"Distributing Python Modules", which explains how to write setup.py
files.  Both documents are part of the standard Python documentation
set, and are available from http://www.python.org/doc/current/ .

        Greg Ward (gward@python.net)

$Id$