From: Greg Ward Date: Fri, 4 Aug 2000 01:31:13 +0000 (+0000) Subject: Added 'debug_print()'. X-Git-Tag: v2.0b1~585 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f813e59d496b1048d68a759cd913818d9b61112c;p=thirdparty%2FPython%2Fcpython.git Added 'debug_print()'. --- diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index 141af796a0f7..ce3f2be69dcb 100644 --- a/Lib/distutils/ccompiler.py +++ b/Lib/distutils/ccompiler.py @@ -783,6 +783,11 @@ class CCompiler: if self.verbose >= level: print msg + def debug_print (self, msg): + from distutils.core import DEBUG + if DEBUG: + print msg + def warn (self, msg): sys.stderr.write ("warning: %s\n" % msg)