(self)
| 343 | |
| 344 | class TestNdenumerate: |
| 345 | def test_basic(self): |
| 346 | a = np.array([[1, 2], [3, 4]]) |
| 347 | assert_equal(list(ndenumerate(a)), |
| 348 | [((0, 0), 1), ((0, 1), 2), ((1, 0), 3), ((1, 1), 4)]) |
| 349 | |
| 350 | |
| 351 | class TestIndexExpression: |
nothing calls this directly
no test coverage detected