mirror of
https://github.com/python/cpython.git
synced 2025-07-18 16:55:20 +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
|
@ -35,7 +35,7 @@ class install_scripts (Command):
|
|||
|
||||
def run (self):
|
||||
if not self.skip_build:
|
||||
self.run_peer('build_scripts')
|
||||
self.run_command('build_scripts')
|
||||
self.outfiles = self.copy_tree (self.build_dir, self.install_dir)
|
||||
if os.name == 'posix':
|
||||
# Set the executable bits (owner, group, and world) on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue