(mut self, _py: Python)
| 603 | impl PyDrop for PyBuffer { |
| 604 | #[inline] |
| 605 | fn release_ref(mut self, _py: Python) { |
| 606 | unsafe { ffi::PyBuffer_Release(&mut *self.0) } |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | impl Drop for PyBuffer { |
nothing calls this directly
no outgoing calls
no test coverage detected