(self)
| 44 | np.dtype([(('name', 'label'), np.int32, 3)]) |
| 45 | |
| 46 | def test_reduce(self): |
| 47 | # Ticket #40 |
| 48 | assert_almost_equal(np.add.reduce([1., .5], dtype=None), 1.5) |
| 49 | |
| 50 | def test_zeros_order(self): |
| 51 | # Ticket #43 |
nothing calls this directly
no test coverage detected