[Numpy-svn] r4239 - branches/numpy.scons/numpy/core

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Oct 18 09:36:57 EDT 2007


Author: cdavid
Date: 2007-10-18 08:36:54 -0500 (Thu, 18 Oct 2007)
New Revision: 4239

Modified:
   branches/numpy.scons/numpy/core/scons_support.py
Log:
Avoid * import from scons 

Modified: branches/numpy.scons/numpy/core/scons_support.py
===================================================================
--- branches/numpy.scons/numpy/core/scons_support.py	2007-10-18 13:35:27 UTC (rev 4238)
+++ branches/numpy.scons/numpy/core/scons_support.py	2007-10-18 13:36:54 UTC (rev 4239)
@@ -116,7 +116,7 @@
 def generate_config_header_emitter(target, source, env):
     """Add dependency from config list  CONFIG_H_GEN to target.  Returns
     original target, source tuple unchanged.  """
-    from SCons.Script import *
+    from SCons.Script import Depends
     d = deepcopy(env['CONFIG_H_GEN']) # copy it
     Depends(target, SCons.Node.Python.Value(d))
     return target, source




More information about the Numpy-svn mailing list