diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-09-11 16:31:53 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-09-11 16:31:53 (GMT) |
commit | fcd7353863c024bb87aabe7c4639ca8df692ac85 (patch) | |
tree | 8e25bd5d72391ff8ab8be6f6e381a1f356c8b901 /Lib/distutils/ccompiler.py | |
parent | 5f6228ed461987709c75dd3ebd253beb412ed457 (diff) | |
download | cpython-fcd7353863c024bb87aabe7c4639ca8df692ac85.zip cpython-fcd7353863c024bb87aabe7c4639ca8df692ac85.tar.gz cpython-fcd7353863c024bb87aabe7c4639ca8df692ac85.tar.bz2 |
Use distutils.debug.DEBUG instead of distutils.core.DEBUG.
Note that distutils.core.DEBUG still works if client code uses it, but
the core code avoids circular references by using distutils.debug.
Diffstat (limited to 'Lib/distutils/ccompiler.py')
-rw-r--r-- | Lib/distutils/ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index f1a50cb..5a0641e 100644 --- a/Lib/distutils/ccompiler.py +++ b/Lib/distutils/ccompiler.py @@ -923,7 +923,7 @@ class CCompiler: log.debug(msg) def debug_print (self, msg): - from distutils.core import DEBUG + from distutils.debug import DEBUG if DEBUG: print msg |