mirror of https://github.com/python/cpython
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
|
@ -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…
Reference in New Issue