update snapshot with parenthesized example

This commit is contained in:
dylwil3 2025-12-12 14:19:46 -06:00
parent bb90d55ed5
commit 7cfaa1fb9c
1 changed files with 12 additions and 0 deletions

View File

@ -273,6 +273,9 @@ def indentation_matching_walrus_in_preview():
(address,), (address,),
).fetchall().some_attr)) == 0 or len(set(names)) > 1: ).fetchall().some_attr)) == 0 or len(set(names)) > 1:
return return
# behavior with parenthesized roots
x = (aaaaaaaaaaaaaaaaaaaaaa).bbbbbbbbbbbbbbbbbbb.cccccccccccccccccccccccc().dddddddddddddddddddddddd().eeeeeeeeeeee
``` ```
## Output ## Output
@ -578,6 +581,15 @@ def indentation_matching_walrus_in_preview():
) )
) == 0 or len(set(names)) > 1: ) == 0 or len(set(names)) > 1:
return return
# behavior with parenthesized roots
x = (
(aaaaaaaaaaaaaaaaaaaaaa)
.bbbbbbbbbbbbbbbbbbb.cccccccccccccccccccccccc()
.dddddddddddddddddddddddd()
.eeeeeeeeeeee
)
``` ```