(zelf: &Py<Self>, vm: &VirtualMachine)
| 677 | |
| 678 | #[inline] |
| 679 | fn clone_exact(zelf: &Py<Self>, vm: &VirtualMachine) -> PyRef<Self> { |
| 680 | vm.ctx.new_bigint(&zelf.value) |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | impl PyInt { |
nothing calls this directly
no test coverage detected