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 da9f0bf commit 3f1822bCopy full SHA for 3f1822b
1 file changed
Lib/distutils/command/install.py
@@ -134,7 +134,7 @@ class install (Command):
134
"filename in which to record list of installed files"),
135
]
136
137
- boolean_options = ['force', 'skip-build']
+ boolean_options = ['compile', 'force', 'skip-build']
138
negative_opt = {'no-compile' : 'compile'}
139
140
@@ -164,8 +164,7 @@ def initialize_options (self):
164
self.install_scripts = None
165
self.install_data = None
166
167
- self.compile = None
168
- self.no_compile = None
+ self.compile = 0
169
self.optimize = None
170
171
# These two are for putting non-packagized distributions into their
0 commit comments