cpython/Lib/distutils
Guido van Rossum 3172c5d263 Patch# 1258 by Christian Heimes: kill basestring.
I like this because it makes the code shorter! :-)
2007-10-16 18:12:55 +00:00
..
command Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
tests SF patch# 1770008 by Christian Heimes (plus some extras). 2007-08-09 01:03:29 +00:00
__init__.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
archive_util.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
bcppcompiler.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
ccompiler.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
cmd.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
core.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
cygwinccompiler.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
debug.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
dep_util.py Merged revisions 57778-58052 via svnmerge from 2007-09-08 17:39:28 +00:00
dir_util.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
dist.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
emxccompiler.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
errors.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
extension.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
fancy_getopt.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
file_util.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
filelist.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
log.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
msvccompiler.py Fix a typo in the distutils cleanup. 2007-08-30 18:46:25 +00:00
mwerkscompiler.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
README Update file 2002-11-13 13:26:59 +00:00
spawn.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
sysconfig.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
text_file.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
unixccompiler.py Patch# 1258 by Christian Heimes: kill basestring. 2007-10-16 18:12:55 +00:00
util.py Stop using the find function on the string module, use the string method. 2007-08-30 05:35:41 +00:00
version.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
versionpredicate.py Fix a bunch of doctests with the -d option of refactor.py. 2007-02-09 20:13:25 +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$