(&self, vm: &VirtualMachine)
| 292 | |
| 293 | #[pymethod] |
| 294 | fn __trunc__(&self, vm: &VirtualMachine) -> PyResult<BigInt> { |
| 295 | try_to_bigint(self.value, vm) |
| 296 | } |
| 297 | |
| 298 | #[pymethod] |
| 299 | fn __floor__(&self, vm: &VirtualMachine) -> PyResult<BigInt> { |
nothing calls this directly
no test coverage detected