diff options
author | Greg Ward <gward@python.net> | 2000-10-14 04:06:40 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-10-14 04:06:40 (GMT) |
commit | fa9ff76aae32ecaae6b5409a410c10ff12116732 (patch) | |
tree | f5a19253ee0f6cc1e904bf1b0138b4c2ef1493c3 /Lib/distutils/command | |
parent | 4cd6f2ab807e0f3a23a059a407a08c5edad6bb98 (diff) | |
download | cpython-fa9ff76aae32ecaae6b5409a410c10ff12116732.zip cpython-fa9ff76aae32ecaae6b5409a410c10ff12116732.tar.gz cpython-fa9ff76aae32ecaae6b5409a410c10ff12116732.tar.bz2 |
Untabified.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/bdist.py | 2 | ||||
-rw-r--r-- | Lib/distutils/command/build.py | 2 | ||||
-rw-r--r-- | Lib/distutils/command/build_clib.py | 2 | ||||
-rw-r--r-- | Lib/distutils/command/clean.py | 2 | ||||
-rw-r--r-- | Lib/distutils/command/install.py | 2 | ||||
-rw-r--r-- | Lib/distutils/command/install_data.py | 6 | ||||
-rw-r--r-- | Lib/distutils/command/sdist.py | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index c0cb1d3..a75303e 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/command/bdist.py @@ -45,7 +45,7 @@ class bdist (Command): help_options = [ ('help-formats', None, "lists available distribution formats", show_formats), - ] + ] # The following commands do not take a format option from bdist no_format_option = ('bdist_rpm',) diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py index 0fed6b4..cf35b45 100644 --- a/Lib/distutils/command/build.py +++ b/Lib/distutils/command/build.py @@ -47,7 +47,7 @@ class build (Command): help_options = [ ('help-compiler', None, "list available compilers", show_compilers), - ] + ] def initialize_options (self): self.build_base = 'build' diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 2726b97..063da91 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -53,7 +53,7 @@ class build_clib (Command): help_options = [ ('help-compiler', None, "list available compilers", show_compilers), - ] + ] def initialize_options (self): self.build_clib = None diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py index fb8822f..b4a9be4 100644 --- a/Lib/distutils/command/clean.py +++ b/Lib/distutils/command/clean.py @@ -60,7 +60,7 @@ class clean (Command): # remove build directories for directory in (self.build_lib, self.bdist_base, - self.build_scripts): + self.build_scripts): if os.path.exists(directory): remove_tree(directory, self.verbose, self.dry_run) else: diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 012b9f4..6aee1b3 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -498,7 +498,7 @@ class install (Command): self.record) sys_path = map(os.path.normpath, sys.path) - sys_path = map(os.path.normcase, sys_path) + sys_path = map(os.path.normcase, sys_path) install_lib = os.path.normcase(os.path.normpath(self.install_lib)) if (self.warn_dir and not (self.path_file and self.install_path_file) and diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index d9a4869..dba108a 100644 --- a/Lib/distutils/command/install_data.py +++ b/Lib/distutils/command/install_data.py @@ -38,10 +38,10 @@ class install_data (Command): def finalize_options (self): self.set_undefined_options('install', - ('install_data', 'install_dir'), - ('root', 'root'), + ('install_data', 'install_dir'), + ('root', 'root'), ('force', 'force'), - ) + ) def run (self): self.mkpath(self.install_dir) diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 5116868..1f9e918 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -74,7 +74,7 @@ class sdist (Command): help_options = [ ('help-formats', None, "list available distribution formats", show_formats), - ] + ] negative_opt = {'no-defaults': 'use-defaults', 'no-prune': 'prune' } |