(zelf: &PyObject, vm: &VirtualMachine)
| 375 | /// Return str(self). |
| 376 | #[pyslot] |
| 377 | fn slot_str(zelf: &PyObject, vm: &VirtualMachine) -> PyResult<PyStrRef> { |
| 378 | // FIXME: try tp_repr first and fallback to object.__repr__ |
| 379 | zelf.repr(vm) |
| 380 | } |
| 381 | |
| 382 | #[pyslot] |
| 383 | fn slot_repr(zelf: &PyObject, vm: &VirtualMachine) -> PyResult<PyStrRef> { |