summaryrefslogtreecommitdiff
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-03-21 23:46:54 +0000
committerAndrew M. Kuchling <amk@amk.ca>2002-03-21 23:46:54 +0000
commitdbc37034fd4ecd94c0c9fc32b4c8f44bfdb71f38 (patch)
treeae579a431bcedac086b3c1577f8d6e1df16b330a /Lib/distutils/command
parent998a45220d31949b798c0edc894218ad978b33f4 (diff)
downloadcpython-dbc37034fd4ecd94c0c9fc32b4c8f44bfdb71f38.tar.gz
Add missing Boolean options
Remove unused no_compile flag Initialize the Boolean attribute .compile to 0 instead of None Bugfix candidate.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/install.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 4d78d3aa6f..2a18fb9dee 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -134,7 +134,7 @@ class install (Command):
"filename in which to record list of installed files"),
]
- boolean_options = ['force', 'skip-build']
+ boolean_options = ['compile', 'force', 'skip-build']
negative_opt = {'no-compile' : 'compile'}
@@ -164,8 +164,7 @@ class install (Command):
self.install_scripts = None
self.install_data = None
- self.compile = None
- self.no_compile = None
+ self.compile = 0
self.optimize = None
# These two are for putting non-packagized distributions into their