mirror of
https://github.com/python/cpython.git
synced 2025-08-28 20:56:54 +00:00
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.
This commit is contained in:
parent
5f6228ed46
commit
fcd7353863
7 changed files with 9 additions and 11 deletions
|
@ -10,7 +10,8 @@ __revision__ = "$Id$"
|
|||
|
||||
import sys, os, string
|
||||
from types import *
|
||||
from distutils.core import Command, DEBUG
|
||||
from distutils.core import Command
|
||||
from distutils.debug import DEBUG
|
||||
from distutils.sysconfig import get_config_vars
|
||||
from distutils.errors import DistutilsPlatformError
|
||||
from distutils.file_util import write_file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue