mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
In 'install_misc': 'self.outfiles' defaults to the empty list, so we don't
have to worry about "or []" in 'get_outputs()'.
This commit is contained in:
parent
6a901dd1bd
commit
21b9e910a5
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ class install_misc (Command):
|
|||
|
||||
def initialize_options (self):
|
||||
self.install_dir = None
|
||||
self.outfiles = None
|
||||
self.outfiles = []
|
||||
|
||||
def _install_dir_from (self, dirname):
|
||||
self.set_undefined_options('install', (dirname, 'install_dir'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue