mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +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
|
@ -18,12 +18,12 @@ class install_ext (Command):
|
|||
('build-dir=','b', "build directory (where to install from)"),
|
||||
]
|
||||
|
||||
def set_default_options (self):
|
||||
def initialize_options (self):
|
||||
# let the 'install' command dictate our installation directory
|
||||
self.install_dir = None
|
||||
self.build_dir = None
|
||||
|
||||
def set_final_options (self):
|
||||
def finalize_options (self):
|
||||
self.set_undefined_options ('install',
|
||||
('build_platlib', 'build_dir'),
|
||||
('install_site_platlib', 'install_dir'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue