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