(val: S, py: Python)
| 181 | type R = *mut ffi::PyObject; |
| 182 | |
| 183 | fn convert(val: S, py: Python) -> *mut ffi::PyObject { |
| 184 | val.into_py_object(py).into_object().steal_ptr() |
| 185 | } |
| 186 | |
| 187 | #[inline] |
| 188 | fn error_value() -> *mut ffi::PyObject { |
nothing calls this directly
no test coverage detected