summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarload <rladhkstn8@gmail.com>2020-07-13 14:49:57 +0900
committermarload <rladhkstn8@gmail.com>2020-07-13 14:49:57 +0900
commitad9ce0b789e16b8731e10fcb2f930e7d56f59d3a (patch)
tree52f1c159c2f7ef5ddc7a9ef6cbc7cd05d919e4c4
parent151c0aae81c16627cad79e9e81424c2221b94970 (diff)
downloadnumpy-ad9ce0b789e16b8731e10fcb2f930e7d56f59d3a.tar.gz
Remove code that will never run
-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: