(zelf: &PyObject, vm: &VirtualMachine)
| 1785 | #[inline] |
| 1786 | #[pyslot] |
| 1787 | fn slot_repr(zelf: &PyObject, vm: &VirtualMachine) -> PyResult<PyRef<PyStr>> { |
| 1788 | let zelf = zelf |
| 1789 | .downcast_ref() |
| 1790 | .ok_or_else(|| vm.new_type_error("unexpected payload for __repr__"))?; |
| 1791 | Self::repr(zelf, vm) |
| 1792 | } |
| 1793 | |
| 1794 | #[inline] |
| 1795 | fn repr(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyRef<PyStr>> { |
nothing calls this directly
no test coverage detected