https://github.com/python/cpython
Raw File
Tip revision: 4064156d62622c1009d32bb87ba17a5e9ecb9d37 authored by Ɓukasz Langa on 16 February 2021, 20:10:19 UTC
Python 3.9.2rc1
Tip revision: 4064156
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')
back to top