-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 multiline lambda expression statement formating #8466
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,15 @@ impl FormatNodeRule<Parameters> for FormatParameters { | |
dangling.split_at(parenthesis_comments_end); | ||
|
||
let format_inner = format_with(|f: &mut PyFormatter| { | ||
let separator = format_with(|f| write!(f, [token(","), soft_line_break_or_space()])); | ||
let separator = format_with(|f: &mut PyFormatter| { | ||
token(",").fmt(f)?; | ||
|
||
if f.context().node_level().is_parenthesized() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. testing for a = [
lambda x # comment
x
# comment
: b
] This uses the |
||
soft_line_break_or_space().fmt(f) | ||
} else { | ||
space().fmt(f) | ||
} | ||
}); | ||
let mut joiner = f.join_with(separator); | ||
let mut last_node: Option<AnyNodeRef> = None; | ||
|
||
|
@@ -232,8 +240,6 @@ impl FormatNodeRule<Parameters> for FormatParameters { | |
Ok(()) | ||
}); | ||
|
||
let mut f = WithNodeLevel::new(NodeLevel::ParenthesizedExpression, f); | ||
|
||
let num_parameters = posonlyargs.len() | ||
+ args.len() | ||
+ usize::from(vararg.is_some()) | ||
|
@@ -243,12 +249,14 @@ impl FormatNodeRule<Parameters> for FormatParameters { | |
if self.parentheses == ParametersParentheses::Never { | ||
write!(f, [group(&format_inner), dangling_comments(dangling)]) | ||
} else if num_parameters == 0 { | ||
let mut f = WithNodeLevel::new(NodeLevel::ParenthesizedExpression, f); | ||
// No parameters, format any dangling comments between `()` | ||
write!(f, [empty_parenthesized("(", dangling, ")")]) | ||
} else { | ||
// Intentionally avoid `parenthesized`, which groups the entire formatted contents. | ||
// We want parameters to be grouped alongside return types, one level up, so we | ||
// format them "inline" here. | ||
let mut f = WithNodeLevel::new(NodeLevel::ParenthesizedExpression, f); | ||
write!( | ||
f, | ||
[ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR does not fix this formatting. It only adds tests for it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this PR fix? Sorry, trying to parse!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait sorry, I now understand.