From: Andrew M. Kuchling Date: Thu, 21 Mar 2002 23:44:01 +0000 (+0000) Subject: Add unlisted Boolean options. Thomas H., can you please check that I X-Git-Tag: v2.3c1~6416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da9f0bf4dd234a6686b77a40c6f70bd249944fc9;p=python Add unlisted Boolean options. Thomas H., can you please check that I got this right? Bugfix candidate, unless Thomas notes a problem. --- diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index fe52f393dc..33dc28ed0c 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -43,7 +43,8 @@ class bdist_wininst (Command): " or before deinstallation"), ] - boolean_options = ['keep-temp'] + boolean_options = ['keep-temp', 'no-target-compile', 'no-target-optimize', + 'skip-build'] def initialize_options (self): self.bdist_dir = None