cpython/Lib/distutils
Benjamin Peterson 960cf0fd9b 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:11:44 +00:00
..
command Merged revisions 68167,68276,68292-68293,68344 via svnmerge from 2009-01-09 04:11:44 +00:00
tests Merged revisions 68167,68276,68292-68293,68344 via svnmerge from 2009-01-09 04:11:44 +00:00
README Update file 2002-11-13 13:26:59 +00:00
__init__.py Prep for Python 3.1! 2008-12-03 16:46:14 +00:00
archive_util.py Merged revisions 62873,62887,62892-62896,62904 via svnmerge from 2008-05-08 22:27:58 +00:00
bcppcompiler.py Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +00:00
ccompiler.py Merged revisions 67654,67676-67677,67681,67692,67725,67761,67784-67785,67787-67788,67802,67848-67850,67862-67864,67880,67882 via svnmerge from 2008-12-21 00:06:59 +00:00
cmd.py Remove incorrect usages of map() in distutils. 2008-07-26 20:09:45 +00:00
config.py Merged revisions 68415 via svnmerge from 2009-01-09 00:15:45 +00:00
core.py Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from 2008-05-16 00:03:33 +00:00
cygwinccompiler.py Merged revisions 65780,65782,65785,65809,65812,65834,65846,65859,65861 via svnmerge from 2008-08-19 18:57:56 +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 Merged revisions 68415 via svnmerge from 2009-01-09 00:15:45 +00:00
emxccompiler.py #2834: Change re module semantics, so that str and bytes mixing is forbidden, 2008-08-19 17:56:33 +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 Fix [issue4038] py3k error in distutils file_copy exception handlers. r=martin. 2008-10-05 09:00:28 +00:00
filelist.py Remove incorrect usages of map() in distutils. 2008-07-26 20:09:45 +00:00
log.py General cleanup, raise normalization in Lib/distutils. 2007-08-30 03:52:21 +00:00
msvc9compiler.py Merged revisions 68081 via svnmerge from 2008-12-30 23:09:20 +00:00
msvccompiler.py #2879: rename _winreg to winreg. 2008-05-25 07:45:51 +00:00
mwerkscompiler.py Remove incorrect usages of map() in distutils. 2008-07-26 20:09:45 +00:00
spawn.py Fix more exception slicing. 2008-01-06 21:13:42 +00:00
sysconfig.py #2834: Change re module semantics, so that str and bytes mixing is forbidden, 2008-08-19 17:56:33 +00:00
text_file.py Remove incorrect usages of map() in distutils. 2008-07-26 20:09:45 +00:00
unixccompiler.py Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from 2008-07-23 16:10:53 +00:00
util.py Merged revisions 67982,67988,67990 via svnmerge from 2008-12-30 17:56:45 +00:00
version.py #2834: Change re module semantics, so that str and bytes mixing is forbidden, 2008-08-19 17:56:33 +00:00
versionpredicate.py #2834: Change re module semantics, so that str and bytes mixing is forbidden, 2008-08-19 17:56:33 +00:00

README

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$