-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 parentheses around return type annotations #13381
Merged
MichaReiser
merged 4 commits into
main
from
micha/avoid-parenthesizing-return-type-annotations
Sep 20, 2024
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
176 changes: 176 additions & 0 deletions
176
...ruff_python_formatter/resources/test/fixtures/ruff/statement/return_type_no_parameters.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
# Tests for functions without parameters or a dangling comment | ||
# Black's overall behavior is to: | ||
# 1. Print the return type on the same line as the function header if it fits | ||
# 2. Parenthesize the return type if it doesn't fit. | ||
# The exception to this are subscripts, see below | ||
|
||
|
||
######################################################################################### | ||
# Return types that use NeedsParantheses::BestFit layout with the exception of subscript | ||
######################################################################################### | ||
# String return type that fits on the same line | ||
def no_parameters_string_return_type() -> "ALongIdentifierButDoesntGetParenthesized": | ||
pass | ||
|
||
|
||
# String return type that exceeds the line length | ||
def no_parameters_overlong_string_return_type() -> ( | ||
"ALongIdentifierButDoesntGetParenthesized" | ||
): | ||
pass | ||
|
||
|
||
# Name return type that fits on the same line as the function header | ||
def no_parameters_name_return_type() -> ALongIdentifierButDoesntGetParenthesized: | ||
pass | ||
|
||
|
||
# Name return type that exceeds the configured line width | ||
def no_parameters_overlong_name_return_type() -> ( | ||
ALongIdentifierButDoesntGetParenthesized | ||
): | ||
pass | ||
|
||
|
||
|
||
######################################################################################### | ||
# Unions | ||
######################################################################################### | ||
|
||
def test_return_overlong_union() -> ( | ||
A | B | C | DDDDDDDDDDDDDDDDDDDDDDDD | EEEEEEEEEEEEEEEEEEEEEE | ||
): | ||
pass | ||
|
||
|
||
|
||
def test_return_union_with_elements_exceeding_length() -> ( | ||
A | ||
| B | ||
| Ccccccccccccccccccccccccccccccccc | ||
| DDDDDDDDDDDDDDDDDDDDDDDD | ||
| EEEEEEEEEEEEEEEEEEEEEE | ||
): | ||
pass | ||
|
||
|
||
|
||
######################################################################################### | ||
# Multiline strings (NeedsParentheses::Never) | ||
######################################################################################### | ||
|
||
def test_return_multiline_string_type_annotation() -> """str | ||
| list[str] | ||
""": | ||
pass | ||
|
||
|
||
def test_return_multiline_string_binary_expression_return_type_annotation() -> """str | ||
| list[str] | ||
""" + "b": | ||
pass | ||
|
||
|
||
######################################################################################### | ||
# Implicit concatenated strings (NeedsParentheses::Multiline) | ||
######################################################################################### | ||
|
||
|
||
def test_implicit_concatenated_string_return_type() -> "str" "bbbbbbbbbbbbbbbb": | ||
pass | ||
|
||
|
||
def test_overlong_implicit_concatenated_string_return_type() -> ( | ||
"liiiiiiiiiiiisssssst[str]" "bbbbbbbbbbbbbbbb" | ||
): | ||
pass | ||
|
||
|
||
def test_extralong_implicit_concatenated_string_return_type() -> ( | ||
"liiiiiiiiiiiisssssst[str]" | ||
"bbbbbbbbbbbbbbbbbbbb" | ||
"cccccccccccccccccccccccccccccccccccccc" | ||
): | ||
pass | ||
|
||
|
||
######################################################################################### | ||
# Subscript | ||
######################################################################################### | ||
def no_parameters_subscript_return_type() -> list[str]: | ||
pass | ||
|
||
|
||
# 1. Black tries to keep the list flat by parenthesizing the list as shown below even when the `list` identifier | ||
# fits on the header line. IMO, this adds unnecessary parentheses that can be avoided | ||
# and supporting it requires extra complexity (best_fitting! layout) | ||
def no_parameters_overlong_subscript_return_type_with_single_element() -> ( | ||
list[xxxxxxxxxxxxxxxxxxxxx] | ||
): | ||
pass | ||
|
||
|
||
# 2. Black: Removes the parentheses when the subscript fits after breaking individual elements. | ||
# This is somewhat wasteful because the below list actually fits on a single line when splitting after | ||
# `list[`. It is also inconsistent with how subscripts are normally formatted where it first tries to fit the entire subscript, | ||
# then splits after `list[` but keeps all elements on a single line, and finally, splits after each element. | ||
# IMO: Splitting after the `list[` and trying to keep the elements together when possible seems more consistent. | ||
def no_parameters_subscript_return_type_multiple_elements() -> list[ | ||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, | ||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
]: | ||
pass | ||
|
||
|
||
# Black removes the parentheses even the elements exceed the configured line width. | ||
# So does Ruff. | ||
def no_parameters_subscript_return_type_multiple_overlong_elements() -> list[ | ||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, | ||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
]: | ||
pass | ||
|
||
|
||
# Black parenthesizes the subscript if its name doesn't fit on the header line. | ||
# So does Ruff | ||
def no_parameters_subscriptreturn_type_with_overlong_value_() -> ( | ||
liiiiiiiiiiiiiiiiiiiiist[ | ||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, | ||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
] | ||
): | ||
pass | ||
|
||
|
||
# Black: It removes the parentheses when the subscript contains multiple elements as | ||
# `no_parameters_subscript_return_type_multiple_overlong_elements` shows. However, it doesn't | ||
# when the subscript contains a single element. Black then keeps the parentheses. | ||
# Ruff removes the parentheses in this case for consistency. | ||
def no_parameters_overlong_subscript_return_type_with_overlong_single_element() -> ( | ||
list[ | ||
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | ||
] | ||
): | ||
pass | ||
|
||
|
||
######################################################################################### | ||
# can_omit_optional_parentheses_layout | ||
######################################################################################### | ||
|
||
def test_binary_expression_return_type_annotation() -> aaaaaaaaaaaaaaaaaaaaaaaaaa > [ | ||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa, | ||
bbbbbbbbbbbbbbbbbbbbbbbbb, | ||
]: | ||
pass | ||
|
||
|
||
######################################################################################### | ||
# Other | ||
######################################################################################### | ||
|
||
# Don't paranthesize lists | ||
def f() -> [ | ||
a, | ||
b, | ||
]: pass |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 is no longer true. We never add parentheses around lists anymore