(&self)
| 164 | /// Returns a borrowed pointer. |
| 165 | #[inline] |
| 166 | pub fn as_ptr(&self) -> *mut ffi::PyObject { |
| 167 | self.ptr.as_ptr() |
| 168 | } |
| 169 | |
| 170 | /// Gets the underlying FFI pointer. |
| 171 | /// Consumes `self` without calling `Py_DECREF()`, thus returning an owned pointer. |
no outgoing calls
no test coverage detected