diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:55:21 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:55:21 (GMT) |
| commit | 899dd1221d396175bec3ca7c77453bbc25f74e60 (patch) | |
| tree | 521eb41894b542c6819938a64e720cf95a7848e3 /Lib/distutils/command/install_headers.py | |
| parent | a961a0444dd759963f903cafb3d96f6dc9bb7078 (diff) | |
| download | cpython-899dd1221d396175bec3ca7c77453bbc25f74e60.zip cpython-899dd1221d396175bec3ca7c77453bbc25f74e60.tar.gz cpython-899dd1221d396175bec3ca7c77453bbc25f74e60.tar.bz2 | |
added tests to the install_headers command
Diffstat (limited to 'Lib/distutils/command/install_headers.py')
| -rw-r--r-- | Lib/distutils/command/install_headers.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py index c25b771..d892416 100644 --- a/Lib/distutils/command/install_headers.py +++ b/Lib/distutils/command/install_headers.py @@ -8,7 +8,8 @@ __revision__ = "$Id$" from distutils.core import Command -class install_headers (Command): +# XXX force is never used +class install_headers(Command): description = "install C/C++ header files" @@ -20,18 +21,18 @@ class install_headers (Command): boolean_options = ['force'] - def initialize_options (self): + def initialize_options(self): self.install_dir = None self.force = 0 self.outfiles = [] - def finalize_options (self): + def finalize_options(self): self.set_undefined_options('install', ('install_headers', 'install_dir'), ('force', 'force')) - def run (self): + def run(self): headers = self.distribution.headers if not headers: return @@ -41,10 +42,10 @@ class install_headers (Command): (out, _) = self.copy_file(header, self.install_dir) self.outfiles.append(out) - def get_inputs (self): + def get_inputs(self): return self.distribution.headers or [] - def get_outputs (self): + def get_outputs(self): return self.outfiles # class install_headers |
