commit | 99b032eaf24e1887f6451eceea7f1e24ced05a0f | [log] [tgz] |
---|---|---|
author | Greg Ward <gward@python.net> | Mon Sep 25 01:41:15 2000 +0000 |
committer | Greg Ward <gward@python.net> | Mon Sep 25 01:41:15 2000 +0000 |
tree | 759136a87badad9d9c87e9b6a3e4ff5180a2d9ed | |
parent | 817dc098efd0c2cba674cee32950fc5626e12881 [diff] [blame] |
Added 'boolean_options' list to support config file parsing.
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 573e074..4ad652d 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py
@@ -106,6 +106,8 @@ "filename in which to record list of installed files"), ] + boolean_options = ['force', 'skip-build'] + def initialize_options (self):