(zelf: &PyObject, vm: &VirtualMachine)
| 1771 | #[inline] |
| 1772 | #[pyslot] |
| 1773 | fn slot_hash(zelf: &PyObject, vm: &VirtualMachine) -> PyResult<PyHash> { |
| 1774 | let zelf = zelf |
| 1775 | .downcast_ref() |
| 1776 | .ok_or_else(|| vm.new_type_error("unexpected payload for __hash__"))?; |
| 1777 | Self::hash(zelf, vm) |
| 1778 | } |
| 1779 | |
| 1780 | fn hash(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyHash>; |
| 1781 | } |
nothing calls this directly
no test coverage detected