diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 15:07:31 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 15:07:31 (GMT) |
commit | 9d25489b34e743b756f60c8af75cf003af052089 (patch) | |
tree | c6ea8112be62799febdedecb6c35d0383396672f | |
parent | 0eb13041d27a605c9d9ea631dfa8d223e469fe8c (diff) | |
download | cpython-9d25489b34e743b756f60c8af75cf003af052089.zip cpython-9d25489b34e743b756f60c8af75cf003af052089.tar.gz cpython-9d25489b34e743b756f60c8af75cf003af052089.tar.bz2 |
Merged revisions 71513 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71513 | tarek.ziade | 2009-04-12 17:03:50 +0200 (Sun, 12 Apr 2009) | 1 line
pep8-fied the module before adding tests
........
-rw-r--r-- | Lib/distutils/command/config.py | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py index 144c513..385a47a 100644 --- a/Lib/distutils/command/config.py +++ b/Lib/distutils/command/config.py @@ -53,8 +53,6 @@ class config(Command): self.compiler = None self.cc = None self.include_dirs = None - #self.define = None - #self.undef = None self.libraries = None self.library_dirs = None @@ -136,8 +134,8 @@ class config(Command): self.compiler.compile([src], include_dirs=include_dirs) return (src, obj) - def _link(self, body, headers, include_dirs, libraries, - library_dirs, lang): + def _link(self, body, 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] self.compiler.link_executable([obj], prog, @@ -191,8 +189,8 @@ class config(Command): self._clean() return ok - def search_cpp(self, pattern, body=None, headers=None, - include_dirs=None, lang="c"): + def search_cpp(self, pattern, body=None, headers=None, include_dirs=None, + lang="c"): """Construct a source file (just like 'try_cpp()'), run it through the preprocessor, and return true if any line of the output matches 'pattern'. 'pattern' should either be a compiled regex object or a @@ -237,8 +235,8 @@ class config(Command): self._clean() return ok - def try_link(self, body, headers=None, include_dirs=None, - libraries=None, library_dirs=None, lang="c"): + def try_link(self, body, headers=None, include_dirs=None, libraries=None, + library_dirs=None, lang="c"): """Try to compile and link a source file, built from 'body' and 'headers', to executable form. Return true on success, false otherwise. @@ -256,8 +254,8 @@ class config(Command): self._clean() return ok - def try_run(self, body, headers=None, include_dirs=None, - libraries=None, library_dirs=None, lang="c"): + def try_run(self, body, headers=None, include_dirs=None, libraries=None, + library_dirs=None, lang="c"): """Try to compile, link to an executable, and run a program built from 'body' and 'headers'. Return true on success, false otherwise. |