cpython/Lib/distutils/command
Greg Ward f8b9e20d94 Made all debug output go through the 'debug_print()' method instead of
directly printing to stdout.  This was a bit more work than it sounds like
it should have been:
  * turned 'select_pattern()' and 'exclude_pattern()' from functions into
    methods, so they can refer to 'self' to access the method
  * commented out the *other* 'exclude_pattern()' method, which appears
    to be vestigial code that was never cleaned up when the
    'exclude_pattern()' function was created
  * changed the one use of the old 'exclude_pattern()' method to use the
    new 'exclude_pattern()' (same behaviour, slightly different args)
  * some code and docstring reformatting
  * and, of course, changed all the debugging prints to 'debug_print()' calls
Added/tweaked some regular ('self.announce()') output for better runtime
  feedback.
2000-06-08 00:08:14 +00:00
..
__init__.py Changed order so 'clean' is right after the 'build' commands. 2000-05-28 23:49:03 +00:00
bdist.py Patch from Rene Liebscher: this adds "--help-foo" options to list the 2000-06-07 03:00:06 +00:00
bdist_dumb.py Some far-reaching naming changes: 2000-05-27 17:27:23 +00:00
bdist_rpm.py Fixed syntax error. 2000-06-04 15:30:35 +00:00
build.py Patch from Rene Liebscher: this adds "--help-foo" options to list the 2000-06-07 03:00:06 +00:00
build_clib.py Patch from Rene Liebscher: this adds "--help-foo" options to list the 2000-06-07 03:00:06 +00:00
build_ext.py Patch from Rene Liebscher: this adds "--help-foo" options to list the 2000-06-07 03:00:06 +00:00
build_py.py Renamed 'modules' option to 'py_modules', for consistency with Distribution 2000-06-04 13:42:52 +00:00
build_scripts.py Take the basename of the script before concatenating it with the build dir. 2000-05-25 20:05:52 +00:00
clean.py Moved warnings out of 'finalize_options()' into 'run()'. 2000-05-28 23:47:00 +00:00
command_template Cosmetic tweak. 2000-05-30 02:04:54 +00:00
config.py First crack at the Distutils "config" command. Unlike other commands, this 2000-06-06 02:57:07 +00:00
install.py Renamed 'native_path()' to 'convert_path()'. 2000-05-31 02:32:10 +00:00
install_data.py 'get_outputs()' now returns an empty list instead of None. 2000-06-06 02:18:13 +00:00
install_headers.py Added 'install_headers' command to install C/C++ header files. 2000-05-27 01:25:16 +00:00
install_lib.py Some far-reaching naming changes: 2000-05-27 17:27:23 +00:00
install_scripts.py Some far-reaching naming changes: 2000-05-27 17:27:23 +00:00
sdist.py Made all debug output go through the 'debug_print()' method instead of 2000-06-08 00:08:14 +00:00