(&self)
| 352 | |
| 353 | #[pymethod] |
| 354 | fn is_integer(&self) -> bool { |
| 355 | crate::literal::float::is_integer(self.value) |
| 356 | } |
| 357 | |
| 358 | #[pymethod] |
| 359 | fn as_integer_ratio(&self, vm: &VirtualMachine) -> PyResult<(PyIntRef, PyIntRef)> { |
nothing calls this directly
no test coverage detected