Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: ecbb68f2cce8d9a6dda564f148122f8ad193433f authored by Barry Warsaw on 07 April 2009, 15:17:20 UTC
Retagging.
Tip revision: ecbb68f
debug.py
import os

# This module should be kept compatible with Python 2.1.

__revision__ = "$Id$"

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