Skip to content
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

Line breaking long sequence of assignments #3789

Closed
piotro888 opened this issue Jul 13, 2023 · 1 comment
Closed

Line breaking long sequence of assignments #3789

piotro888 opened this issue Jul 13, 2023 · 1 comment
Labels
F: linetoolong Black makes our lines too long T: style What do we want Blackened code to look like?

Comments

@piotro888
Copy link

Describe the style change

Hello,
We noticed that Black breaks long chains of assignments into multiple lines in a very unexpected way.

Example source code

AA = BB = CC = DD = EE = FF = GG = HH = JJ = KK = LL = MM = NN = OO = PP = QQ = RR = SS = TT = UU = WW = XX = YY = ZZ = 1

Examples in the current Black style

Black formats it in this way (last line is matched to max line length, but previous elements get 2 lines per one element):

AA = (
    BB
) = (
    CC
) = (
    DD
) = (
    EE
) = (
    FF
) = (
    GG
) = (
    HH
) = JJ = KK = LL = MM = NN = OO = PP = QQ = RR = SS = TT = UU = WW = XX = YY = ZZ = 1

Desired style

We would expect that all lines would break at max line length, and that the last line would be shorter.
We are not sure what would the desired splitting format, here are some propositions to be discussed:

#1
AA = BB = CC = DD = EE =  FF =  GG =  HH = JJ = KK = LL = MM = NN = OO = PP = QQ = (
RR ) = SS = TT = UU = WW = XX = YY = ZZ = 1
#2
AA = BB = CC = DD = EE =  FF =  GG =  HH = JJ = KK = LL = MM = NN = OO = PP =  ( QQ 
) = RR = SS = TT = UU = WW = XX = YY = ZZ = 1
#3 - looks the best for me
AA = BB = CC = DD = EE =  FF =  GG =  HH = JJ = KK = LL = MM = NN = OO = PP = QQ = ( 
    RR ) = SS = TT = UU = WW = XX = YY = ZZ = 1
#4
AA = BB = CC = DD = EE =  FF =  GG =  HH = JJ = KK = LL = MM = NN = OO = PP = QQ = (
    RR
) = SS = TT = UU = WW = XX = YY = ZZ = 1
#5
AA = BB = CC = DD = EE =  FF =  GG =  HH = JJ = KK = LL = MM = NN = OO = PP = QQ = \
    RR = SS = TT = UU = WW = XX = YY = ZZ = 1

All of above cases look more usable than currently formatted version.

Additional context

This a legitimate minified case from code, where we needed to assign a lot of alias names to an Enum field.

@piotro888 piotro888 added the T: style What do we want Blackened code to look like? label Jul 13, 2023
@JelleZijlstra JelleZijlstra added the F: linetoolong Black makes our lines too long label Jul 13, 2023
@MeGaGiGaGon
Copy link
Collaborator

This now formats to

AA = BB = CC = DD = EE = FF = GG = HH = JJ = KK = LL = MM = NN = OO = PP = QQ = RR = (
    SS
) = TT = UU = WW = XX = YY = ZZ = 1

playground link which is almost the same as case number 4, so this should be good to close. The change looks to have been put into preview by #4010 and later stabilized in version 2024 as part of #3368. #4010 also added a roughly equivalent test case here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
F: linetoolong Black makes our lines too long T: style What do we want Blackened code to look like?
Projects
None yet
Development

No branches or pull requests

3 participants