(self)
| 143 | self.check_raw_non_contiguous(arr) |
| 144 | |
| 145 | def test_raw_released(self): |
| 146 | pb = PickleBuffer(b"foo") |
| 147 | pb.release() |
| 148 | with self.assertRaises(ValueError) as raises: |
| 149 | pb.raw() |
| 150 | |
| 151 | |
| 152 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected