-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
1,068 additions
and
429 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/slice.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,82 @@ | ||
# Handle comments both when lower and upper exist and when they don't | ||
a1 = "a"[ | ||
# a | ||
1 # b | ||
: # c | ||
2 # d | ||
] | ||
a2 = "a"[ | ||
# a | ||
# b | ||
: # c | ||
# d | ||
] | ||
|
||
# Check all places where comments can exist | ||
b1 = "b"[ # a | ||
# b | ||
1 # c | ||
# d | ||
: # e | ||
# f | ||
2 # g | ||
# h | ||
: # i | ||
# j | ||
3 # k | ||
# l | ||
] | ||
|
||
# Handle the spacing from the colon correctly with upper leading comments | ||
c1 = "c"[ | ||
1 | ||
: # e | ||
# f | ||
2 | ||
] | ||
c2 = "c"[ | ||
1 | ||
: # e | ||
2 | ||
] | ||
c3 = "c"[ | ||
1 | ||
: | ||
# f | ||
2 | ||
] | ||
c4 = "c"[ | ||
1 | ||
: # f | ||
2 | ||
] | ||
|
||
# End of line comments | ||
d1 = "d"[ # comment | ||
: | ||
] | ||
d2 = "d"[ # comment | ||
1: | ||
] | ||
d3 = "d"[ | ||
1 # comment | ||
: | ||
] | ||
|
||
# Spacing around the colon(s) | ||
def a(): | ||
... | ||
|
||
e00 = "e"[:] | ||
e01 = "e"[:1] | ||
e02 = "e"[: a()] | ||
e10 = "e"[1:] | ||
e11 = "e"[1:1] | ||
e12 = "e"[1 : a()] | ||
e20 = "e"[a() :] | ||
e21 = "e"[a() : 1] | ||
e22 = "e"[a() : a()] | ||
e200 = "e"[a() :: ] | ||
e201 = "e"[a() :: 1] | ||
e202 = "e"[a() :: a()] | ||
e210 = "e"[a() : 1 :] |
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
Oops, something went wrong.