mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +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
|
@ -16,7 +16,7 @@ from distutils.errors import *
|
|||
from distutils.fancy_getopt import FancyGetopt, translate_longopt
|
||||
from distutils.util import check_environ, strtobool, rfc822_escape
|
||||
from distutils import log
|
||||
from distutils.core import DEBUG
|
||||
from distutils.debug import DEBUG
|
||||
|
||||
# Regex to define acceptable Distutils command names. This is not *quite*
|
||||
# the same as a Python NAME -- I don't allow leading underscores. The fact
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue