(zelf: &Py<Self>, _vm: &VirtualMachine)
| 665 | impl Hashable for PyInt { |
| 666 | #[inline] |
| 667 | fn hash(zelf: &Py<Self>, _vm: &VirtualMachine) -> PyResult<hash::PyHash> { |
| 668 | Ok(hash::hash_bigint(zelf.as_bigint())) |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | impl AsNumber for PyInt { |
nothing calls this directly
no test coverage detected