(self)
| 1353 | lst=items[::step]) |
| 1354 | |
| 1355 | def test_ndarray_fortran(self): |
| 1356 | items = [1,2,3,4,5,6,7,8,9,10,11,12] |
| 1357 | ex = ndarray(items, shape=(3, 4), strides=(1, 3)) |
| 1358 | nd = ndarray(ex, getbuf=PyBUF_F_CONTIGUOUS|PyBUF_FORMAT) |
| 1359 | self.assertEqual(nd.tolist(), farray(items, (3, 4))) |
| 1360 | |
| 1361 | def test_ndarray_multidim(self): |
| 1362 | for ndim in range(5): |
nothing calls this directly
no test coverage detected