summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/ccompiler.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py
index 9ea083774..106436e64 100644
--- a/numpy/distutils/ccompiler.py
+++ b/numpy/distutils/ccompiler.py
@@ -443,14 +443,6 @@ def CCompiler_show_customization(self):
Printing is only done if the distutils log threshold is < 2.
"""
- if 0:
- for attrname in ['include_dirs', 'define', 'undef',
- 'libraries', 'library_dirs',
- 'rpath', 'link_objects']:
- attr = getattr(self, attrname, None)
- if not attr:
- continue
- log.info("compiler '%s' is set to %s" % (attrname, attr))
try:
self.get_version()
except Exception: