diff options
author | Fred Drake <fdrake@acm.org> | 2001-12-06 21:01:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-12-06 21:01:19 (GMT) |
commit | 21d45356b8a22bb3091a97f50b919b57798675f5 (patch) | |
tree | bdfd02aba3e9f0a243296721cb8ec2c75be9c08a /Lib/distutils/command/config.py | |
parent | b94b849d65af71b4b432a74fdaef8ccd88209cc0 (diff) | |
download | cpython-21d45356b8a22bb3091a97f50b919b57798675f5.zip cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.gz cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/distutils/command/config.py')
-rw-r--r-- | Lib/distutils/command/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py index b89997a..27c2cc1 100644 --- a/Lib/distutils/command/config.py +++ b/Lib/distutils/command/config.py @@ -147,7 +147,7 @@ class config (Command): headers, include_dirs, libraries, library_dirs, lang): (src, obj) = self._compile(body, headers, include_dirs, lang) - prog = os.path.splitext(os.path.basename(src))[0] + prog = os.path.splitext(os.path.basename(src))[0] self.compiler.link_executable([obj], prog, libraries=libraries, library_dirs=library_dirs) @@ -263,7 +263,7 @@ class config (Command): self.announce(ok and "success!" or "failure.") self._clean() return ok - + def try_run (self, body, headers=None, include_dirs=None, libraries=None, library_dirs=None, |