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

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Oct 18 19:23:38 EDT 2007


Author: cdavid
Date: 2007-10-18 18:23:34 -0500 (Thu, 18 Oct 2007)
New Revision: 4242

Modified:
   branches/numpy.scons/numpy/core/SConstruct
Log:
Typo in Sconstruct of numpy.core preventing configuration to work with python2.3

Modified: branches/numpy.scons/numpy/core/SConstruct
===================================================================
--- branches/numpy.scons/numpy/core/SConstruct	2007-10-18 15:18:57 UTC (rev 4241)
+++ branches/numpy.scons/numpy/core/SConstruct	2007-10-18 23:23:34 UTC (rev 4242)
@@ -1,4 +1,4 @@
-# Last Change: Thu Oct 18 06:00 PM 2007 J
+# Last Change: Fri Oct 19 08:00 AM 2007 J
 # vim:syntax=python
 import os
 import sys
@@ -107,7 +107,7 @@
 # XXX: would be better to check for PyOS_ascii_strod instead of version
 if sys.version[:3] < '2.4':
     if config.CheckFunc('strtod'):
-        config_sym.append('PyOS_ascii_strtod', 'strtod')
+        config_sym.append(('PyOS_ascii_strtod', 'strtod'))
 
 if define_no_smp():
     config_sym.append(('NPY_NOSMP', '1'))




More information about the Numpy-svn mailing list