(self, obj)
| 129 | self.check_raw(arr, equiv) |
| 130 | |
| 131 | def check_raw_non_contiguous(self, obj): |
| 132 | pb = PickleBuffer(obj) |
| 133 | with self.assertRaisesRegex(BufferError, "non-contiguous"): |
| 134 | pb.raw() |
| 135 | |
| 136 | def test_raw_non_contiguous(self): |
| 137 | # 1-D |
no test coverage detected