mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Renamed 'set_default_options()' to 'initialize_options()', and
'set_final_options()' to 'finalize_options()'.
This commit is contained in:
parent
4c96db1a65
commit
e01149cbe8
10 changed files with 28 additions and 28 deletions
|
@ -23,13 +23,13 @@ class build_py (Command):
|
|||
]
|
||||
|
||||
|
||||
def set_default_options (self):
|
||||
def initialize_options (self):
|
||||
self.build_dir = None
|
||||
self.modules = None
|
||||
self.package = None
|
||||
self.package_dir = None
|
||||
|
||||
def set_final_options (self):
|
||||
def finalize_options (self):
|
||||
self.set_undefined_options ('build',
|
||||
('build_lib', 'build_dir'))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue