]> granicus.if.org Git - python/commitdiff
Renamed 'set_default_options()' to 'initialize_options()', and
authorGreg Ward <gward@python.net>
Fri, 18 Feb 2000 00:35:22 +0000 (00:35 +0000)
committerGreg Ward <gward@python.net>
Fri, 18 Feb 2000 00:35:22 +0000 (00:35 +0000)
'set_final_options()' to 'finalize_options()'.

Lib/distutils/command/build.py
Lib/distutils/command/build_clib.py
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_lib.py
Lib/distutils/command/build_py.py
Lib/distutils/command/install.py
Lib/distutils/command/install_ext.py
Lib/distutils/command/install_lib.py
Lib/distutils/command/install_py.py
Lib/distutils/command/sdist.py

index d46132f3082a06671df0999bf24bb7601633ebb6..28241e104fb9d04df435b86e1a685ddcf44ba3b0 100644 (file)
@@ -25,7 +25,7 @@ class build (Command):
          "compile extensions and libraries with debugging information"),
         ]
 
-    def set_default_options (self):
+    def initialize_options (self):
         self.build_base = 'build'
         # these are decided only after 'build_base' has its final value
         # (unless overridden by the user or client)
@@ -33,7 +33,7 @@ class build (Command):
         self.build_platlib = None
         self.debug = None
 
-    def set_final_options (self):
+    def finalize_options (self):
         # 'build_lib' and 'build_platlib' just default to 'lib' and
         # 'platlib' under the base build directory
         if self.build_lib is None:
index 26b89b3aba0bae75d84df019d0fe672251e02c0d..9cf53da0322070df99e4cfdf87fab17e67cc285a 100644 (file)
@@ -33,7 +33,7 @@ class build_lib (Command):
          "compile with debugging information"),
         ]
 
-    def set_default_options (self):
+    def initialize_options (self):
         # List of libraries to build
         self.libraries = None
 
@@ -43,9 +43,9 @@ class build_lib (Command):
         self.undef = None
         self.debug = None
 
-    # set_default_options()
+    # initialize_options()
 
-    def set_final_options (self):
+    def finalize_options (self):
         self.set_undefined_options ('build',
                                     ('debug', 'debug'))
         self.libraries = self.distribution.libraries
@@ -58,7 +58,7 @@ class build_lib (Command):
         # XXX same as for build_ext -- what about 'self.define' and
         # 'self.undef' ?
 
-    # set_final_options()
+    # finalize_options()
 
 
     def run (self):
index 963abc297786a78ae1c5a291c40041c4b3d17363..8ed3a97339b6a98457bd4d253a12cfeae4131445 100644 (file)
@@ -38,9 +38,9 @@ class build_ext (Command):
     #     structure
     #   - that data structure (in this case, a list of 2-tuples)
     #     will then be present in the command object by the time
-    #     we get to set_final_options() (i.e. the constructor
+    #     we get to finalize_options() (i.e. the constructor
     #     takes care of both command-line and client options
-    #     in between set_default_options() and set_final_options())
+    #     in between initialize_options() and finalize_options())
 
     user_options = [
         ('build-dir=', 'd',
@@ -64,7 +64,7 @@ class build_ext (Command):
         ]
 
 
-    def set_default_options (self):
+    def initialize_options (self):
         self.extensions = None
         self.build_dir = None
         self.package = None
@@ -79,7 +79,7 @@ class build_ext (Command):
         self.debug = None
 
 
-    def set_final_options (self):
+    def finalize_options (self):
         from distutils import sysconfig
 
         self.set_undefined_options ('build',
@@ -112,7 +112,7 @@ class build_ext (Command):
         # XXX how the heck are 'self.define' and 'self.undef' supposed to
         # be set?
 
-    # set_final_options ()
+    # finalize_options ()
     
 
     def run (self):
index 26b89b3aba0bae75d84df019d0fe672251e02c0d..9cf53da0322070df99e4cfdf87fab17e67cc285a 100644 (file)
@@ -33,7 +33,7 @@ class build_lib (Command):
          "compile with debugging information"),
         ]
 
-    def set_default_options (self):
+    def initialize_options (self):
         # List of libraries to build
         self.libraries = None
 
@@ -43,9 +43,9 @@ class build_lib (Command):
         self.undef = None
         self.debug = None
 
-    # set_default_options()
+    # initialize_options()
 
-    def set_final_options (self):
+    def finalize_options (self):
         self.set_undefined_options ('build',
                                     ('debug', 'debug'))
         self.libraries = self.distribution.libraries
@@ -58,7 +58,7 @@ class build_lib (Command):
         # XXX same as for build_ext -- what about 'self.define' and
         # 'self.undef' ?
 
-    # set_final_options()
+    # finalize_options()
 
 
     def run (self):
index eecf88b9d3f51b2c5cd6d8b21d4c66123e13133f..7ae207b8cc74e158ced77b120925942e7ed1696c 100644 (file)
@@ -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'))
 
index 798460b27a5fccb205583120cc30790ac36e226f..ffd687978a279803e4e7bc5f77a88540b3d7f892 100644 (file)
@@ -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):
index 016a514e1ece11fe6c27b7fc886e357a21fd4765..b046dfbf3b63038f8d3664fd8f3518d4f4d2e449 100644 (file)
@@ -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'))
index 6dfebfbe0de9babf486cd71684f2260b12493889..919873c6f285de80a761291a7db365d86e6c6c4b 100644 (file)
@@ -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
index 6dfebfbe0de9babf486cd71684f2260b12493889..919873c6f285de80a761291a7db365d86e6c6c4b 100644 (file)
@@ -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
index aaedb3042170ea961ff3dd63d360361f4498dba7..042b1fc54a7add30b54bc7a133936deac791b907 100644 (file)
@@ -50,7 +50,7 @@ class sdist (Command):
     exclude_re = re.compile (r'\s*!\s*(\S+)') # for manifest lines
 
 
-    def set_default_options (self):
+    def initialize_options (self):
         # 'template' and 'manifest' are, respectively, the names of
         # the manifest template and manifest file.
         self.template = None
@@ -68,7 +68,7 @@ class sdist (Command):
         self.keep_tree = 0
 
 
-    def set_final_options (self):
+    def finalize_options (self):
         if self.manifest is None:
             self.manifest = "MANIFEST"
         if self.template is None: