Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Display implementation for typeshed VERSIONS parser #11848

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/red_knot/src/typeshed_versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ impl fmt::Display for TypeshedVersions {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let sorted_items: BTreeMap<&SmolStr, &PyVersionRange> = self.0.iter().collect();
for (module_name, range) in sorted_items {
writeln!(f, "{module_name}-{range}")?;
writeln!(f, "{module_name}: {range}")?;
}
Ok(())
}
Expand Down Expand Up @@ -362,9 +362,9 @@ foo: 3.8- # trailing comment
let parsed_versions = TypeshedVersions::from_str(VERSIONS).unwrap();
assert_eq!(parsed_versions.len(), 3);
assert_snapshot!(parsed_versions.to_string(), @r###"
bar-2.7-3.10
bar.baz-3.1-3.9
foo-3.8-
bar: 2.7-3.10
bar.baz: 3.1-3.9
foo: 3.8-
"###
);

Expand Down
Loading