diff options
author | Greg Ward <gward@python.net> | 2000-05-27 17:27:23 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-05-27 17:27:23 (GMT) |
commit | 4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5 (patch) | |
tree | c117c1d3a5eb065b8bcd0144f8c3a26a871365ff /Lib/distutils/command/bdist_dumb.py | |
parent | 25bfd0e8d00d2e601f38f163c9cb6f7c862abd2f (diff) | |
download | cpython-4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5.zip cpython-4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5.tar.gz cpython-4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5.tar.bz2 |
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").
Diffstat (limited to 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index eaa1927..51e35e4 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/command/bdist_dumb.py @@ -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 |