diff options
author | David Cournapeau <cournape@gmail.com> | 2014-07-07 23:17:11 +0900 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2014-07-07 23:17:11 +0900 |
commit | d0689a3243b77b8b65e9c49eb8376a9dd190b698 (patch) | |
tree | dbd9faf8e6c127b728cfa7f4958a1eb8fe09740b /numpy/distutils/ccompiler.py | |
parent | 8a1496df7ad58936a8f9ff929ff629f3d38f51d8 (diff) | |
download | numpy-d0689a3243b77b8b65e9c49eb8376a9dd190b698.tar.gz |
REF: remove obsolete code.
Diffstat (limited to 'numpy/distutils/ccompiler.py')
-rw-r--r-- | numpy/distutils/ccompiler.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index 646285d3c..8484685c0 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -70,8 +70,6 @@ def CCompiler_spawn(self, cmd, display=None): else: msg = '' raise DistutilsExecError('Command "%s" failed with exit status %d%s' % (cmd, s, msg)) - if hasattr(self, 'config_output'): - self.config_output += o replace_method(CCompiler, 'spawn', CCompiler_spawn) |