(zelf: &Py<Self>, _vm: &VirtualMachine)
| 658 | impl Representable for PyInt { |
| 659 | #[inline] |
| 660 | fn repr_str(zelf: &Py<Self>, _vm: &VirtualMachine) -> PyResult<String> { |
| 661 | Ok(zelf.to_str_radix_10()) |
| 662 | } |
| 663 | } |
| 664 | |
| 665 | impl Hashable for PyInt { |
nothing calls this directly
no test coverage detected