(self)
| 63 | np.dtype([(('name', 'label'), np.int32, 3)]) |
| 64 | |
| 65 | def test_reduce(self): |
| 66 | # Ticket #40 |
| 67 | assert_almost_equal(np.add.reduce([1., .5], dtype=None), 1.5) |
| 68 | |
| 69 | def test_zeros_order(self): |
| 70 | # Ticket #43 |
nothing calls this directly
no test coverage detected