(self)
| 365 | |
| 366 | class TestNdenumerate: |
| 367 | def test_basic(self): |
| 368 | a = np.array([[1, 2], [3, 4]]) |
| 369 | assert_equal(list(ndenumerate(a)), |
| 370 | [((0, 0), 1), ((0, 1), 2), ((1, 0), 3), ((1, 1), 4)]) |
| 371 | |
| 372 | |
| 373 | class TestIndexExpression: |
nothing calls this directly
no test coverage detected