(self)
| 706 | _assert_valid_refcount(np.vdot) |
| 707 | |
| 708 | def test_startswith(self): |
| 709 | ca = np.char.array(['Hi', 'There']) |
| 710 | assert_equal(ca.startswith('H'), [True, False]) |
| 711 | |
| 712 | def test_noncommutative_reduce_accumulate(self): |
| 713 | # Ticket #413 |
nothing calls this directly
no test coverage detected