xref: /aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/distutils/debug.py (revision cda5da8d549138a6648c5ee6d7a49cf8f4a657be)
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