summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_lib.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-02-18 00:35:22 (GMT)
committerGreg Ward <gward@python.net>2000-02-18 00:35:22 (GMT)
commite01149cbe83778a5cf872a6b429ff33179b7cdcb (patch)
tree7c5d4a04d726c6c2a0993dc8abd5563e0ae20453 /Lib/distutils/command/install_lib.py
parent4c96db1a65d5803c19070a0dbb5a53a98ffb2968 (diff)
downloadcpython-e01149cbe83778a5cf872a6b429ff33179b7cdcb.zip
cpython-e01149cbe83778a5cf872a6b429ff33179b7cdcb.tar.gz
cpython-e01149cbe83778a5cf872a6b429ff33179b7cdcb.tar.bz2
Renamed 'set_default_options()' to 'initialize_options()', and
'set_final_options()' to 'finalize_options()'.
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r--Lib/distutils/command/install_lib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 6dfebfb..919873c 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -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