mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-01 04:17:42 +00:00
Fix subscript comment placement with parenthesized value (#10496)
## Summary This is a follow up on https://github.com/astral-sh/ruff/pull/10492 I incorrectly assumed that `subscript.value.end()` always points past the value. However, this isn't the case for parenthesized values where the end "ends" before the parentheses. ## Test Plan I added new tests for the parenthesized case.
This commit is contained in:
parent
fd3d272026
commit
9d705a4414
3 changed files with 42 additions and 13 deletions
|
|
@ -10,7 +10,6 @@ result = (
|
|||
+ 1
|
||||
)[0]
|
||||
|
||||
|
||||
# Regression tests for: https://github.com/astral-sh/ruff/issues/10355
|
||||
repro(
|
||||
"some long string that takes up some space"
|
||||
|
|
@ -20,7 +19,7 @@ repro(
|
|||
|
||||
repro(
|
||||
"some long string that takes up some space"
|
||||
)[0 # some long comment also taking up space
|
||||
)[0 # some long comment also taking up space
|
||||
]
|
||||
|
||||
repro(
|
||||
|
|
@ -29,12 +28,23 @@ repro(
|
|||
|
||||
repro("some long string that takes up some space")[0] # some long comment also taking up space
|
||||
|
||||
|
||||
repro(
|
||||
"some long string that takes up some space"
|
||||
)[ # some long comment also taking up space
|
||||
0:-1
|
||||
]
|
||||
|
||||
(
|
||||
repro
|
||||
)[ # some long comment also taking up space
|
||||
0
|
||||
]
|
||||
|
||||
(
|
||||
repro # some long comment also taking up space
|
||||
)[
|
||||
0
|
||||
]
|
||||
```
|
||||
|
||||
## Output
|
||||
|
|
@ -45,7 +55,6 @@ result = (
|
|||
+ 1
|
||||
)[0]
|
||||
|
||||
|
||||
# Regression tests for: https://github.com/astral-sh/ruff/issues/10355
|
||||
repro(
|
||||
"some long string that takes up some space"
|
||||
|
|
@ -65,10 +74,17 @@ repro("some long string that takes up some space")[
|
|||
0
|
||||
] # some long comment also taking up space
|
||||
|
||||
|
||||
repro(
|
||||
"some long string that takes up some space"
|
||||
)[ # some long comment also taking up space
|
||||
0:-1
|
||||
]
|
||||
|
||||
(repro)[ # some long comment also taking up space
|
||||
0
|
||||
]
|
||||
|
||||
(
|
||||
repro # some long comment also taking up space
|
||||
)[0]
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue