(self, _py: Python)
| 130 | { |
| 131 | #[inline] |
| 132 | fn release_ref(self, _py: Python) { |
| 133 | let ptr = self.into_object().steal_ptr(); |
| 134 | unsafe { |
| 135 | ffi::Py_DECREF(ptr); |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | impl<T> PyDrop for Option<T> |
nothing calls this directly
no test coverage detected