mirror of
https://github.com/python/cpython.git
synced 2025-09-23 08:53:45 +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,14 +18,14 @@ class install_py (Command):
|
|||
]
|
||||
|
||||
|
||||
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
|
||||
self.compile = 1
|
||||
self.optimize = 1
|
||||
|
||||
def set_final_options (self):
|
||||
def finalize_options (self):
|
||||
|
||||
# Find out from the 'build_ext' command if we were asked to build
|
||||
# any extensions. If so, that means even pure-Python modules in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue