(self)
| 1358 | |
| 1359 | """ |
| 1360 | def test_basic(self): |
| 1361 | a = np.arange(10) |
| 1362 | |
| 1363 | assert_raises(IndexError, a.__getitem__, [0.5, 1.5]) |
| 1364 | assert_raises(IndexError, a.__getitem__, (['1', '2'],)) |
| 1365 | |
| 1366 | # The following is valid |
| 1367 | a.__getitem__([]) |
| 1368 | |
| 1369 | |
| 1370 | class TestMultipleEllipsisError: |
nothing calls this directly
no test coverage detected