(zelf: &Py<Self>, _vm: &VirtualMachine)
| 501 | impl Representable for PyFloat { |
| 502 | #[inline] |
| 503 | fn repr_str(zelf: &Py<Self>, _vm: &VirtualMachine) -> PyResult<String> { |
| 504 | Ok(crate::literal::float::to_string(zelf.value)) |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | impl PyFloat { |
nothing calls this directly
no test coverage detected