[Python-checkins] python/dist/src/Lib/distutils debug.py,NONE,1.1

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Wed, 11 Sep 2002 09:28:55 -0700


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory usw-pr-cvs1:/tmp/cvs-serv17049

Added Files:
	debug.py 
Log Message:
Define DEBUG in a separate module to resolve circular references.


--- NEW FILE: debug.py ---
import os

# If DISTUTILS_DEBUG is anything other than the empty string, we run in
# debug mode.
DEBUG = os.environ.get('DISTUTILS_DEBUG')