(self, py: Python)
| 40 | /// it can move out of the input object. |
| 41 | #[inline] |
| 42 | fn into_py_object(self, py: Python) -> Self::ObjectType |
| 43 | where |
| 44 | Self: Sized, |
| 45 | { |
| 46 | self.to_py_object(py) |
| 47 | } |
| 48 | |
| 49 | /// Converts self into a Python object and calls the specified closure |
| 50 | /// on the native FFI pointer underlying the Python object. |
nothing calls this directly
no test coverage detected