(&self, vm: &VirtualMachine)
| 302 | |
| 303 | #[pymethod] |
| 304 | fn __ceil__(&self, vm: &VirtualMachine) -> PyResult<BigInt> { |
| 305 | try_to_bigint(self.value.ceil(), vm) |
| 306 | } |
| 307 | |
| 308 | #[pymethod] |
| 309 | fn __round__(&self, ndigits: OptionalOption<PyIntRef>, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected