Changes to what we do to modules that don't import, as

discussed on python-dev.
This commit is contained in:
Michael W. Hudson 2002-03-01 14:16:31 +00:00
parent dcea37026e
commit 7113d9607b
1 changed files with 5 additions and 5 deletions

View File

@ -176,13 +176,13 @@ class PyBuildExt(build_ext):
except ImportError, why:
if 1:
self.announce('*** WARNING: removing "%s" since importing it'
self.announce('*** WARNING: renaming "%s" since importing it'
' failed: %s' % (ext.name, why))
assert not self.inplace
fullname = self.get_ext_fullname(ext.name)
ext_filename = os.path.join(self.build_lib,
self.get_ext_filename(fullname))
os.remove(ext_filename)
basename, tail = os.path.splitext(ext_filename)
newname = basename + "_failed" + tail
if os.path.exists(newname): os.remove(newname)
os.rename(ext_filename, newname)
# XXX -- This relies on a Vile HACK in
# distutils.command.build_ext.build_extension(). The