]> granicus.if.org Git - python/commit
Made all debug output go through the 'debug_print()' method instead of
authorGreg Ward <gward@python.net>
Thu, 8 Jun 2000 00:08:14 +0000 (00:08 +0000)
committerGreg Ward <gward@python.net>
Thu, 8 Jun 2000 00:08:14 +0000 (00:08 +0000)
commitf8b9e20d943030fbcab182a7a48a74e0c9aaf509
tree3e9f438ddd37f0aee86dbebbfb70d93ddfa17b8a
parentebec02a92c578cbdc7d269735a723c78b3265c19
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.
Lib/distutils/command/sdist.py