mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fix unused local variables caught by pychecker.
Fixes a bug for Solaris pkgtool (bdist_pkgtool) that would have prevented it from building subpackages.
This commit is contained in:
parent
a181ec07af
commit
a2f9989c1a
6 changed files with 8 additions and 22 deletions
|
@ -145,7 +145,6 @@ class bdist_packager (Command):
|
|||
|
||||
|
||||
def initialize_options (self):
|
||||
d = self.distribution
|
||||
self.keep_temp = 0
|
||||
self.control_only = 0
|
||||
self.no_autorelocate = 0
|
||||
|
@ -187,8 +186,7 @@ class bdist_packager (Command):
|
|||
self.pkg_dir = os.path.join(bdist_base, 'binary')
|
||||
|
||||
if not self.plat_name:
|
||||
d = self.distribution
|
||||
self.plat = d.get_platforms()
|
||||
self.plat = self.distribution.get_platforms()
|
||||
if self.distribution.has_ext_modules():
|
||||
self.plat_name = [sys.platform,]
|
||||
else:
|
||||
|
@ -237,12 +235,6 @@ class bdist_packager (Command):
|
|||
|
||||
log.info("installing to %s", self.pkg_dir)
|
||||
self.run_command('install')
|
||||
|
||||
# And make an archive relative to the root of the
|
||||
# pseudo-installation tree.
|
||||
archive_basename = "%s.%s" % (self.distribution.get_fullname(),
|
||||
self.plat_name)
|
||||
|
||||
if not self.keep_temp:
|
||||
remove_tree(self.pkg_dir, dry_run=self.dry_run)
|
||||
|
||||
|
|
|
@ -208,7 +208,7 @@ class bdist_pkgtool (bdist_packager.bdist_packager):
|
|||
else:
|
||||
pkg_dir = self.pkg_dir
|
||||
|
||||
install = self.reinitialize_command('install', reinit_subcommands=1)
|
||||
self.reinitialize_command('install', reinit_subcommands=1)
|
||||
# build package
|
||||
log.info('Building package')
|
||||
self.run_command('build')
|
||||
|
@ -275,7 +275,7 @@ class bdist_pkgtool (bdist_packager.bdist_packager):
|
|||
if self.subpackages:
|
||||
self.subpackages=string.split(self.subpackages,",")
|
||||
for pkg in self.subpackages:
|
||||
self.make_package(subpackage)
|
||||
self.make_package(pkg)
|
||||
else:
|
||||
self.make_package()
|
||||
# run()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue