| 4 | /// A Python integer literal. Represents both small (fits in an `i64`) and large integers. |
| 5 | #[derive(Clone, PartialEq, Eq, Hash)] |
| 6 | pub struct Int(Number); |
| 7 | |
| 8 | impl FromStr for Int { |
| 9 | type Err = std::num::ParseIntError; |
no outgoing calls
no test coverage detected