]> granicus.if.org Git - python/commit
Make setup.py less chatty by default.
authorJeremy Hylton <jeremy@alum.mit.edu>
Tue, 4 Jun 2002 20:14:43 +0000 (20:14 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Tue, 4 Jun 2002 20:14:43 +0000 (20:14 +0000)
commitcd8a1148e19116db109f27d26c02e1de536dc76e
treee3969bc16f8ef0c540f1d0e72fb0da711344d758
parent6fa82a34775576b90c8ec38e8968dfbb0b02e11d
Make setup.py less chatty by default.

This is a conservative version of SF patch 504889.  It uses the log
module instead of calling print in various places, and it ignores the
verbose argument passed to many functions and set as an attribute on
some objects.  Instead, it uses the verbosity set on the logger via
the command line.

The log module is now preferred over announce() and warn() methods
that exist only for backwards compatibility.

XXX This checkin changes a lot of modules that have no test suite and
aren't exercised by the Python build process.  It will need
substantial testing.
32 files changed:
Lib/distutils/archive_util.py
Lib/distutils/bcppcompiler.py
Lib/distutils/ccompiler.py
Lib/distutils/cmd.py
Lib/distutils/command/bdist_dumb.py
Lib/distutils/command/bdist_packager.py
Lib/distutils/command/bdist_pkgtool.py
Lib/distutils/command/bdist_rpm.py
Lib/distutils/command/bdist_sdux.py
Lib/distutils/command/bdist_wininst.py
Lib/distutils/command/build_clib.py
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_py.py
Lib/distutils/command/build_scripts.py
Lib/distutils/command/clean.py
Lib/distutils/command/config.py
Lib/distutils/command/install_lib.py
Lib/distutils/command/install_scripts.py
Lib/distutils/command/sdist.py
Lib/distutils/core.py
Lib/distutils/cygwinccompiler.py
Lib/distutils/dir_util.py
Lib/distutils/dist.py
Lib/distutils/emxccompiler.py
Lib/distutils/fancy_getopt.py
Lib/distutils/file_util.py
Lib/distutils/filelist.py
Lib/distutils/msvccompiler.py
Lib/distutils/mwerkscompiler.py
Lib/distutils/spawn.py
Lib/distutils/unixccompiler.py
Lib/distutils/util.py