xref: /third_party/python/Lib/distutils/debug.py (revision 7db96d56)
1import os
2
3# If DISTUTILS_DEBUG is anything other than the empty string, we run in
4# debug mode.
5DEBUG = os.environ.get('DISTUTILS_DEBUG')
6