mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Some far-reaching naming changes:
* Command method 'find_peer()' -> 'get_finalized_command()' * Command method 'run_peer()' -> 'run_command()' Also deleted the 'get_command_option()' method from Command, and fixed the one place where it was used (in "bdist_dumb").
This commit is contained in:
parent
25bfd0e8d0
commit
4fb29e55f8
11 changed files with 59 additions and 78 deletions
|
@ -40,7 +40,7 @@ class bdist_dumb (Command):
|
|||
|
||||
def finalize_options (self):
|
||||
if self.bdist_dir is None:
|
||||
bdist_base = self.get_peer_option('bdist', 'bdist_base')
|
||||
bdist_base = self.get_finalized_command('bdist').bdist_base
|
||||
self.bdist_dir = os.path.join(bdist_base, 'dumb')
|
||||
|
||||
if self.format is None:
|
||||
|
@ -56,10 +56,10 @@ class bdist_dumb (Command):
|
|||
|
||||
def run (self):
|
||||
|
||||
self.run_peer ('build')
|
||||
self.run_command ('build')
|
||||
|
||||
# XXX don't use 'self.find_peer()', because it always runs
|
||||
# 'ensure_ready()' on the command object; we explictly want a
|
||||
# XXX don't use 'self.get_finalized_command()', because it always runs
|
||||
# 'ensure_finalized()' on the command object; we explictly want a
|
||||
# command object that has *not* been finalized, so we can set
|
||||
# options on it! (The option we set, 'root', is so that we can do
|
||||
# a proper "fake install" using this install command object.)
|
||||
|
@ -67,7 +67,7 @@ class bdist_dumb (Command):
|
|||
install.root = self.bdist_dir
|
||||
|
||||
self.announce ("installing to %s" % self.bdist_dir)
|
||||
install.ensure_ready()
|
||||
install.ensure_finalized()
|
||||
install.run()
|
||||
|
||||
# And make an archive relative to the root of the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue