[Scipy-svn] r4607 - branches/stats_models/src

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Aug 6 19:43:23 EDT 2008


Author: tom.waite
Date: 2008-08-06 18:43:17 -0500 (Wed, 06 Aug 2008)
New Revision: 4607

Modified:
   branches/stats_models/src/bspline_ext.c
Log:
fixed evaluate argument order

Modified: branches/stats_models/src/bspline_ext.c
===================================================================
--- branches/stats_models/src/bspline_ext.c	2008-08-06 23:22:16 UTC (rev 4606)
+++ branches/stats_models/src/bspline_ext.c	2008-08-06 23:43:17 UTC (rev 4607)
@@ -99,7 +99,7 @@
     PyObject *x_array     = NULL;
     PyObject *basis_array = NULL;
 
-    if(!PyArg_ParseTuple(args, "OOiiii", &knots_array, &x_array, &lower, &upper, &m, &d)) 
+    if(!PyArg_ParseTuple(args, "OOiiii", &x_array, &knots_array, &m, &d, &lower, &upper)) 
 	    goto exit;
 
     nknots = PyArray_DIMS(knots_array);




More information about the Scipy-svn mailing list