(&self, vm: &VirtualMachine)
| 518 | |
| 519 | #[pymethod] |
| 520 | fn as_integer_ratio(&self, vm: &VirtualMachine) -> (PyRef<Self>, i32) { |
| 521 | (vm.ctx.new_bigint(&self.value), 1) |
| 522 | } |
| 523 | |
| 524 | #[pymethod] |
| 525 | fn bit_length(&self) -> u64 { |
nothing calls this directly
no test coverage detected