Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f2f133 commit 115fdc6Copy full SHA for 115fdc6
1 file changed
Lib/distutils/core.py
@@ -12,6 +12,11 @@
12
13
import sys, os
14
from types import *
15
+
16
+# If DISTUTILS_DEBUG is anything other than the empty string, we run in
17
+# debug mode.
18
+DEBUG = os.environ.get('DISTUTILS_DEBUG')
19
20
from distutils.errors import *
21
from distutils.util import grok_environment_error
22
@@ -32,11 +37,6 @@
32
37
or: %(script)s cmd --help
33
38
"""
34
39
35
-
36
-# If DISTUTILS_DEBUG is anything other than the empty string, we run in
-# debug mode.
-DEBUG = os.environ.get('DISTUTILS_DEBUG')
40
def gen_usage (script_name):
41
script = os.path.basename(script_name)
42
return USAGE % vars()
0 commit comments