diff options
author | David Cournapeau <cournape@gmail.com> | 2008-01-08 14:11:53 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-01-08 14:11:53 +0000 |
commit | 73ab47ef17f5783f3b6aa2517a25ee19f2d9a420 (patch) | |
tree | 17eba5f1705a3ae5c88677e1205cd2ff82d35129 | |
parent | dc318e7d4adbadd978b042033581a12ebaba4afb (diff) | |
download | numpy-73ab47ef17f5783f3b6aa2517a25ee19f2d9a420.tar.gz |
Trivial cleanings in numpy.core SConstruct
-rw-r--r-- | numpy/core/SConstruct | 4 | ||||
-rw-r--r-- | numpy/core/scons_support.py | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/numpy/core/SConstruct b/numpy/core/SConstruct index 84ddafebc..0eda5eb50 100644 --- a/numpy/core/SConstruct +++ b/numpy/core/SConstruct @@ -24,10 +24,12 @@ if os.name == 'nt': #======================= # Starting Configuration #======================= -# XXX: separate env for configuration config = env.NumpyConfigure(custom_tests = {'CheckBrokenMathlib' : CheckBrokenMathlib, 'CheckCBLAS' : CheckCBLAS}, config_h = pjoin(env['build_dir'], 'config.h')) +# numpyconfig_sym will keep the values of some configuration variables, the one +# needed for the public numpy API. + # Convention: list of tuples (definition, value). value: # - 0: #undef definition # - 1: #define definition diff --git a/numpy/core/scons_support.py b/numpy/core/scons_support.py index ab7bff1e7..2c08d648f 100644 --- a/numpy/core/scons_support.py +++ b/numpy/core/scons_support.py @@ -1,7 +1,7 @@ #! Last Change: Tue Jan 08 10:00 PM 2008 J -__docstring__ = """Code to support special facilities to scons which are only -useful for numpy.core, hence not put into numpy.distutils.scons""" +"""Code to support special facilities to scons which are only useful for +numpy.core, hence not put into numpy.distutils.scons""" import sys import os @@ -181,4 +181,3 @@ def define_no_smp(): except KeyError: nosmp = 0 return nosmp == 1 - |