Define DEBUG in a separate module to resolve circular references.

This commit is contained in:
Jeremy Hylton 2002-09-11 16:28:52 +00:00
parent 504bc4f3b7
commit 5f6228ed46
1 changed files with 6 additions and 0 deletions

6
Lib/distutils/debug.py Normal file
View File

@ -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')