(self)
| 107 | self.dlpack_deleter_exception() |
| 108 | |
| 109 | def test_readonly(self): |
| 110 | x = np.arange(5) |
| 111 | x.flags.writeable = False |
| 112 | with pytest.raises(BufferError): |
| 113 | x.__dlpack__() |
| 114 | |
| 115 | def test_ndim0(self): |
| 116 | x = np.array(1.0) |
nothing calls this directly
no test coverage detected