diff options
author | Greg Ward <gward@python.net> | 2000-02-18 00:35:22 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-02-18 00:35:22 +0000 |
commit | e01149cbe83778a5cf872a6b429ff33179b7cdcb (patch) | |
tree | 7c5d4a04d726c6c2a0993dc8abd5563e0ae20453 /Lib/distutils/command/install.py | |
parent | 4c96db1a65d5803c19070a0dbb5a53a98ffb2968 (diff) | |
download | cpython-git-e01149cbe83778a5cf872a6b429ff33179b7cdcb.tar.gz |
Renamed 'set_default_options()' to 'initialize_options()', and
'set_final_options()' to 'finalize_options()'.
Diffstat (limited to 'Lib/distutils/command/install.py')
-rw-r--r-- | Lib/distutils/command/install.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 798460b27a..ffd687978a 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -55,7 +55,7 @@ class install (Command): ] - def set_default_options (self): + def initialize_options (self): self.build_base = None self.build_lib = None @@ -89,7 +89,7 @@ class install (Command): self.optimize_py = 1 - def set_final_options (self): + def finalize_options (self): # XXX this method is where the default installation directories # for modules and extension modules are determined. (Someday, @@ -237,7 +237,7 @@ class install (Command): # Punt on doc directories for now -- after all, we're punting on # documentation completely! - # set_final_options () + # finalize_options () def replace_sys_prefix (self, config_attr, fallback_postfix, use_exec=0): |