(zelf: &PyObject, vm: &VirtualMachine)
| 1679 | #[inline] // for __del__ |
| 1680 | #[pyslot] |
| 1681 | fn slot_del(zelf: &PyObject, vm: &VirtualMachine) -> PyResult<()> { |
| 1682 | let zelf = zelf |
| 1683 | .downcast_ref() |
| 1684 | .ok_or_else(|| vm.new_type_error("unexpected payload for __del__"))?; |
| 1685 | Self::del(zelf, vm) |
| 1686 | } |
| 1687 | |
| 1688 | fn del(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<()>; |
| 1689 | } |
nothing calls this directly
no test coverage detected