d0aab9212a
fuzz / fuzz (3.11) (push) Failing after 1s
fuzz / fuzz (3.12) (push) Failing after 1s
build and publish / sdist + pure wheel (push) Failing after 0s
diff-shades / analysis / base / ${{ matrix.mode }} (push) Has been skipped
docs / docs (ubuntu-latest) (push) Failing after 2s
fuzz / fuzz (3.10) (push) Failing after 1s
fuzz / fuzz (3.14) (push) Failing after 0s
lint and format / lint (push) Failing after 1s
diff-shades / configure (push) Failing after 1s
docker / build (linux/amd64) (push) Has been skipped
diff-shades / analysis / target / ${{ matrix.mode }} (push) Has been skipped
fuzz / fuzz (3.13) (push) Failing after 0s
build and publish / generate wheels matrix (push) Failing after 0s
test release tool / test-release-tool (ubuntu-latest, 3.13) (push) Failing after 1s
build and publish / mypyc wheels ${{ matrix.only }} (push) Has been skipped
test / test (ubuntu-latest, 3.10) (push) Failing after 0s
test / test (ubuntu-latest, 3.11) (push) Failing after 1s
test / test (ubuntu-latest, 3.13) (push) Failing after 0s
test / test (ubuntu-latest, pypy3.11-v7.3.22) (push) Failing after 1s
test / test (ubuntu-latest, 3.15) (push) Failing after 1s
test release tool / test-release-tool (ubuntu-latest, 3.15) (push) Failing after 0s
zizmor / zizmor (push) Failing after 0s
test release tool / test-release-tool (ubuntu-latest, 3.12) (push) Failing after 4s
test release tool / test-release-tool (ubuntu-latest, 3.14) (push) Failing after 3s
test / uvloop (ubuntu-latest) (push) Failing after 1s
test / test (ubuntu-latest, 3.14) (push) Failing after 1s
test / test (ubuntu-latest, 3.12.10) (push) Failing after 5s
docker / build (linux/arm64) (push) Has been cancelled
docker / push (push) Has been cancelled
docs / docs (windows-latest) (push) Has been cancelled
test release tool / test-release-tool (windows-latest, 3.14) (push) Has been cancelled
test release tool / test-release-tool (windows-latest, 3.15) (push) Has been cancelled
test release tool / test-release-tool (macOS-latest, 3.12) (push) Has been cancelled
test release tool / test-release-tool (macOS-latest, 3.13) (push) Has been cancelled
test release tool / test-release-tool (macOS-latest, 3.14) (push) Has been cancelled
test release tool / test-release-tool (macOS-latest, 3.15) (push) Has been cancelled
test release tool / test-release-tool (windows-latest, 3.12) (push) Has been cancelled
test release tool / test-release-tool (windows-latest, 3.13) (push) Has been cancelled
test / test (macOS-latest, 3.11) (push) Has been cancelled
test / test (macOS-latest, 3.12.10) (push) Has been cancelled
test / test (macOS-latest, 3.13) (push) Has been cancelled
test / test (macOS-latest, 3.14) (push) Has been cancelled
test / test (macOS-latest, 3.15) (push) Has been cancelled
test / test (macOS-latest, pypy3.11-v7.3.22) (push) Has been cancelled
test / test (windows-11-arm, 3.11) (push) Has been cancelled
test / test (windows-11-arm, 3.12.10) (push) Has been cancelled
test / test (windows-11-arm, 3.13) (push) Has been cancelled
test / test (macOS-latest, 3.10) (push) Has been cancelled
test / coveralls-finish (push) Has been cancelled
test / uvloop (macOS-latest) (push) Has been cancelled
test / uvloop (windows-11-arm) (push) Has been cancelled
test / uvloop (windows-latest) (push) Has been cancelled
test / test (windows-11-arm, 3.14) (push) Has been cancelled
test / test (windows-11-arm, 3.15) (push) Has been cancelled
test / test (windows-latest, 3.10) (push) Has been cancelled
test / test (windows-latest, 3.11) (push) Has been cancelled
test / test (windows-latest, 3.12.10) (push) Has been cancelled
test / test (windows-latest, 3.13) (push) Has been cancelled
test / test (windows-latest, 3.14) (push) Has been cancelled
test / test (windows-latest, 3.15) (push) Has been cancelled
test / test (windows-latest, pypy3.11-v7.3.22) (push) Has been cancelled
diff-shades / compare / ${{ matrix.mode }} (push) Has been cancelled
fuzz / create-issue (push) Has been cancelled
build and publish / publish-mypyc (push) Has been cancelled
build and publish / publish-hatch (push) Has been cancelled
172 lines
4.8 KiB
Python
172 lines
4.8 KiB
Python
# flags: --preview --line-length=79
|
|
|
|
[a for graph_path_expression in refined_constraint.condition_as_predicate.variables]
|
|
[
|
|
a
|
|
for graph_path_expression in refined_constraint.condition_as_predicate.variables
|
|
]
|
|
[
|
|
a
|
|
for graph_path_expression
|
|
in refined_constraint.condition_as_predicate.variables
|
|
]
|
|
[
|
|
a
|
|
for graph_path_expression in (
|
|
refined_constraint.condition_as_predicate.variables
|
|
)
|
|
]
|
|
|
|
[
|
|
(foobar_very_long_key, foobar_very_long_value)
|
|
for foobar_very_long_key, foobar_very_long_value in foobar_very_long_dictionary.items()
|
|
]
|
|
|
|
# Don't split the `in` if it's not too long
|
|
lcomp3 = [
|
|
element.split("\n", 1)[0]
|
|
for element in collection.select_elements()
|
|
# right
|
|
if element is not None
|
|
]
|
|
|
|
# Don't remove parens around ternaries
|
|
expected = [i for i in (a if b else c)]
|
|
|
|
# Don't remove parens around lambdas; without them the trailing comprehension
|
|
# clauses would be parsed as part of the lambda body, producing invalid code
|
|
lambda_iter = [i for i in (lambda: 0) if i]
|
|
lambda_iter_no_clause = [i for i in (lambda x: x)]
|
|
|
|
# Nested arrays
|
|
# First in will not be split because it would still be too long
|
|
[[
|
|
x
|
|
for x in bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
|
|
for y in xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
]]
|
|
|
|
# Multiple comprehensions, only split the second `in`
|
|
graph_path_expressions_in_local_constraint_refinements = [
|
|
graph_path_expression
|
|
for refined_constraint in self._local_constraint_refinements.values()
|
|
if refined_constraint is not None
|
|
for graph_path_expression in refined_constraint.condition_as_predicate.variables
|
|
]
|
|
|
|
# Dictionary comprehensions
|
|
dict_with_really_long_names = {
|
|
really_really_long_key_name: an_even_longer_really_really_long_key_value
|
|
for really_really_long_key_name, an_even_longer_really_really_long_key_value in really_really_really_long_dict_name.items()
|
|
}
|
|
{
|
|
key_with_super_really_long_name: key_with_super_really_long_name
|
|
for key_with_super_really_long_name in dictionary_with_super_really_long_name
|
|
}
|
|
{
|
|
key_with_super_really_long_name: key_with_super_really_long_name
|
|
for key_with_super_really_long_name
|
|
in dictionary_with_super_really_long_name
|
|
}
|
|
{
|
|
key_with_super_really_long_name: key_with_super_really_long_name
|
|
for key in (
|
|
dictionary
|
|
)
|
|
}
|
|
|
|
# output
|
|
[
|
|
a
|
|
for graph_path_expression in (
|
|
refined_constraint.condition_as_predicate.variables
|
|
)
|
|
]
|
|
[
|
|
a
|
|
for graph_path_expression in (
|
|
refined_constraint.condition_as_predicate.variables
|
|
)
|
|
]
|
|
[
|
|
a
|
|
for graph_path_expression in (
|
|
refined_constraint.condition_as_predicate.variables
|
|
)
|
|
]
|
|
[
|
|
a
|
|
for graph_path_expression in (
|
|
refined_constraint.condition_as_predicate.variables
|
|
)
|
|
]
|
|
|
|
[
|
|
(foobar_very_long_key, foobar_very_long_value)
|
|
for foobar_very_long_key, foobar_very_long_value in (
|
|
foobar_very_long_dictionary.items()
|
|
)
|
|
]
|
|
|
|
# Don't split the `in` if it's not too long
|
|
lcomp3 = [
|
|
element.split("\n", 1)[0]
|
|
for element in collection.select_elements()
|
|
# right
|
|
if element is not None
|
|
]
|
|
|
|
# Don't remove parens around ternaries
|
|
expected = [i for i in (a if b else c)]
|
|
|
|
# Don't remove parens around lambdas; without them the trailing comprehension
|
|
# clauses would be parsed as part of the lambda body, producing invalid code
|
|
lambda_iter = [i for i in (lambda: 0) if i]
|
|
lambda_iter_no_clause = [i for i in (lambda x: x)]
|
|
|
|
# Nested arrays
|
|
# First in will not be split because it would still be too long
|
|
[
|
|
[
|
|
x
|
|
for x in bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
|
|
for y in (
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
)
|
|
]
|
|
]
|
|
|
|
# Multiple comprehensions, only split the second `in`
|
|
graph_path_expressions_in_local_constraint_refinements = [
|
|
graph_path_expression
|
|
for refined_constraint in self._local_constraint_refinements.values()
|
|
if refined_constraint is not None
|
|
for graph_path_expression in (
|
|
refined_constraint.condition_as_predicate.variables
|
|
)
|
|
]
|
|
|
|
# Dictionary comprehensions
|
|
dict_with_really_long_names = {
|
|
really_really_long_key_name: an_even_longer_really_really_long_key_value
|
|
for really_really_long_key_name, an_even_longer_really_really_long_key_value in (
|
|
really_really_really_long_dict_name.items()
|
|
)
|
|
}
|
|
{
|
|
key_with_super_really_long_name: key_with_super_really_long_name
|
|
for key_with_super_really_long_name in (
|
|
dictionary_with_super_really_long_name
|
|
)
|
|
}
|
|
{
|
|
key_with_super_really_long_name: key_with_super_really_long_name
|
|
for key_with_super_really_long_name in (
|
|
dictionary_with_super_really_long_name
|
|
)
|
|
}
|
|
{
|
|
key_with_super_really_long_name: key_with_super_really_long_name
|
|
for key in dictionary
|
|
}
|