(
zelf: &'a PyObject,
obj: Option<PyObjectRef>,
vm: &VirtualMachine,
)
| 1730 | |
| 1731 | #[inline] |
| 1732 | fn _unwrap<'a>( |
| 1733 | zelf: &'a PyObject, |
| 1734 | obj: Option<PyObjectRef>, |
| 1735 | vm: &VirtualMachine, |
| 1736 | ) -> PyResult<(&'a Py<Self>, PyObjectRef)> { |
| 1737 | let zelf = Self::_as_pyref(zelf, vm)?; |
| 1738 | let obj = vm.unwrap_or_none(obj); |
| 1739 | Ok((zelf, obj)) |
| 1740 | } |
| 1741 | |
| 1742 | #[inline] |
| 1743 | fn _check<'a>( |
nothing calls this directly
no test coverage detected