(self)
| 417 | assert_(eq(x, [0, 1, 10, 40, 4])) |
| 418 | |
| 419 | def test_testMaPut(self): |
| 420 | _, _, _, _, _, _, ym, _, zm, _, _ = self._create_data() |
| 421 | m = [1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1] |
| 422 | i = np.nonzero(m)[0] |
| 423 | put(ym, i, zm) |
| 424 | assert_(all(take(ym, i, axis=0) == zm)) |
| 425 | |
| 426 | def test_testOddFeatures(self): |
| 427 | # Test of other odd features |