From c8610f62d3785aa8e506e40091f2effe560040d8 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Mon, 25 Mar 2002 13:15:28 +0000 Subject: [PATCH] backport akuchling's checkin of revision 1.63 of install.py 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 ffc6e414569b..2f8cc3363662 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -157,7 +157,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.47.3