From b26ca9db2e1efdac62893799c49e3db2c127d56b Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Fri, 22 Mar 2002 15:35:17 +0000 Subject: [PATCH] Revert part of previous patch: several install_* subcommands expect .compile to be None, and set it to true if it is. Caught by Pearu Peterson. Bugfix candidate, if the previous change is accepted for release22-maint. --- Lib/distutils/command/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 2a18fb9dee..746ca1f2c3 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -164,7 +164,7 @@ class install (Command): self.install_scripts = None self.install_data = None - self.compile = 0 + self.compile = None self.optimize = None # These two are for putting non-packagized distributions into their -- 2.40.0