diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:54:38 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:54:38 (GMT) |
| commit | a961a0444dd759963f903cafb3d96f6dc9bb7078 (patch) | |
| tree | 38e66c2cd0430e26f60b24179c319bf84d5e2f8d /Lib/distutils/command/install_data.py | |
| parent | e899b711df4754daec2eec88a1eeb9c9dfecc7c6 (diff) | |
| download | cpython-a961a0444dd759963f903cafb3d96f6dc9bb7078.zip cpython-a961a0444dd759963f903cafb3d96f6dc9bb7078.tar.gz cpython-a961a0444dd759963f903cafb3d96f6dc9bb7078.tar.bz2 | |
added test to the install_data command
Diffstat (limited to 'Lib/distutils/command/install_data.py')
| -rw-r--r-- | Lib/distutils/command/install_data.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index cb11371..ec78ce3 100644 --- a/Lib/distutils/command/install_data.py +++ b/Lib/distutils/command/install_data.py @@ -12,7 +12,7 @@ from types import StringType from distutils.core import Command from distutils.util import change_root, convert_path -class install_data (Command): +class install_data(Command): description = "install data files" @@ -27,12 +27,11 @@ class install_data (Command): boolean_options = ['force'] - def initialize_options (self): + def initialize_options(self): self.install_dir = None self.outfiles = [] self.root = None self.force = 0 - self.data_files = self.distribution.data_files self.warn_dir = 1 @@ -43,7 +42,7 @@ class install_data (Command): ('force', 'force'), ) - def run (self): + def run(self): self.mkpath(self.install_dir) for f in self.data_files: if type(f) is StringType: @@ -76,8 +75,8 @@ class install_data (Command): (out, _) = self.copy_file(data, dir) self.outfiles.append(out) - def get_inputs (self): + def get_inputs(self): return self.data_files or [] - def get_outputs (self): + def get_outputs(self): return self.outfiles |
