[Scipy-svn] r6736 - trunk/scipy/interpolate/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Sat Sep 11 20:54:36 EDT 2010


Author: ptvirtan
Date: 2010-09-11 19:54:35 -0500 (Sat, 11 Sep 2010)
New Revision: 6736

Modified:
   trunk/scipy/interpolate/tests/test_interpolate.py
Log:
3K: interpolate/tests: don't use test generators since they work badly on Py3

Modified: trunk/scipy/interpolate/tests/test_interpolate.py
===================================================================
--- trunk/scipy/interpolate/tests/test_interpolate.py	2010-09-12 00:54:22 UTC (rev 6735)
+++ trunk/scipy/interpolate/tests/test_interpolate.py	2010-09-12 00:54:35 UTC (rev 6736)
@@ -219,8 +219,8 @@
     def test_bounds(self):
         for kind in ('linear', 'cubic', 'nearest',
                      'slinear', 'zero', 'quadratic'):
-            yield self._bounds_check, kind
-            yield self._bounds_check_int_nan_fill, kind
+            self._bounds_check(kind)
+            self._bounds_check_int_nan_fill(kind)
 
     def _nd_check_interp(self, kind='linear'):
         """Check the behavior when the inputs and outputs are multidimensional.
@@ -289,8 +289,8 @@
 
     def test_nd(self):
         for kind in ('linear', 'cubic', 'slinear', 'quadratic', 'nearest'):
-            yield self._nd_check_interp, kind
-            yield self._nd_check_shape, kind
+            self._nd_check_interp(kind)
+            self._nd_check_shape(kind)
 
     def _check_complex(self, dtype=np.complex_, kind='linear'):
         x = np.array([1, 2.5, 3, 3.1, 4, 6.4, 7.9, 8.0, 9.5, 10])
@@ -311,8 +311,8 @@
     def test_complex(self):
         for kind in ('linear', 'nearest', 'cubic', 'slinear', 'quadratic',
                      'zero'):
-            yield self._check_complex, np.complex64, kind
-            yield self._check_complex, np.complex128, kind
+            self._check_complex(np.complex64, kind)
+            self._check_complex(np.complex128, kind)
 
     @dec.knownfailureif(True, "zero-order splines fail for the last point")
     def test_nd_zero_spline(self):




More information about the Scipy-svn mailing list