Staging
v0.5.1
Revision aa13a29fde14be3982064cd7597990a9afcfd821 authored by Tarek Ziadé on 09 September 2009, 08:34:06 UTC, committed by Tarek Ziadé on 09 September 2009, 08:34:06 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74728 | tarek.ziade | 2009-09-09 10:14:20 +0200 (Wed, 09 Sep 2009) | 1 line

  Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompiler
........
1 parent 6acb41b
Raw File
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