mirror of https://github.com/python/cpython
Define DEBUG in a separate module to resolve circular references.
This commit is contained in:
parent
504bc4f3b7
commit
5f6228ed46
|
@ -0,0 +1,6 @@
|
|||
import os
|
||||
|
||||
# If DISTUTILS_DEBUG is anything other than the empty string, we run in
|
||||
# debug mode.
|
||||
DEBUG = os.environ.get('DISTUTILS_DEBUG')
|
||||
|
Loading…
Reference in New Issue