diff options
author | Greg Ward <gward@python.net> | 2000-10-03 03:31:52 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-10-03 03:31:52 (GMT) |
commit | a9d37835adbbb209a4207e16492a75ef016b3c39 (patch) | |
tree | 75b6bba93d0cfcc20b3ca70748f3e13bb821192b /Lib/distutils | |
parent | 9216cfe7ba0257f10790f919e50283114a3476dd (diff) | |
download | cpython-a9d37835adbbb209a4207e16492a75ef016b3c39.zip cpython-a9d37835adbbb209a4207e16492a75ef016b3c39.tar.gz cpython-a9d37835adbbb209a4207e16492a75ef016b3c39.tar.bz2 |
Fixed so --no-compile is a negative alias for --compile.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/install.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 303ae4c..330f324 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -116,6 +116,7 @@ class install (Command): ] boolean_options = ['force', 'skip-build'] + negative_opt = {'no-compile' : 'compile'} def initialize_options (self): |