-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Unnecessary line breaks in method call on multiline string #256
Comments
Black considers multiline strings as always not fitting a single line (per definition), so it tries to break the line if possible. I agree that in this case the result is sub-optimal. I'll see what I can do to improve this. |
A related case is:
We need to fix that, too. |
That related case is how I got here. For clarity here, the above: textwrap.dedent("""\
Hello, I am
a multiline string used with
a common idiom
""") becomes: textwrap.dedent(
"""\
Hello, I am
a multiline string used with
a common idiom
"""
) Amusingly you can of course instead change it to: s = """\
Hello, I am
a multiline string used with
a common idiom
"""
s = textwrap.dedent(s) in one fewer lines and which |
What's the status of this one? I've seen this one has been opened around 2018 and evolved quite a bit over the years... if I'm not mistaken it seems black is still screwing up this common & readable pattern:
into something like this:
One of the main reasons to use Black version: black, version 19.10b0 |
I love black... I really do... but this issue is really nasty... not just because black will breaks code folding completely but also because the output produced by black doesn't make any sense in comparison the original clean version. I find myself adding clauses I understand none of the maintainers is interested on this issue? I've see both this one and other related ones have been opened for years... question for people who've submitted patches to black before, do you what's the place in the codebase where this is handled? Thanks. Ps. Why this important issue hasn't been fixed already? Has it been considered a non-go? Too difficult to handle? I'd like to understand... :) |
This is a big pet peeve for me too. There's information about contributing here, if you're interested, @brupelo: https://github.com/psf/black/blob/master/CONTRIBUTING.md |
Some quick questions:
I'm trying to get a sense if this issue clears the hurdle mentioned in the contribution README: I'd be happy to take a stab if someone would be willing to do some hand holding along the way, as I'd be a brand new contributor. Thanks for your efforts, |
The point about «liking» is dismissive of more serious concerns. Single vs double quotes is an annoying change but mostly irrelevant (it was nice to match the style that the Python REPL outputs, but quote style doesn’t matter and there is a point that it’s common to have apostrophe in a string, so 🤷). But people care about diffs and history, and the developer is the person best situated to decide if this is an extensible list/dict/set that is multiline from the start, or something that can be rewritten by a style program. (One of the worst cases is parameters to the pytest.parametrize decorator that are rewritten to waste screen space without benefit.) |
I kept running into this so I decided to spend some time figuring how to fix it. Happy to say I have a branch that should do just that! It's got a new 316 line test file with a bunch of cases (including the ones reported in this and linked issues). However, the code is still messy as I haven't yet taken the time to clean it up: right now it's ~100 new lines dumped into the FWIW, the branch is more of a POC right now and requires more work before it could be mergeable. I have some hacked-together code for bracket tracking, trailing comma handling, etc., which will require some refactoring so I can reuse the existing functions for that (will need help from the black folks on the best approach). There's also more work to do like finishing up draft changes to the black style guide docs & CHANGES.rst looking through the black-primer output to verify the changes and work with the relevant upstreams. |
Opened #1879 with my prototype fix! Would love feedback from folks on the new tests I added and whether the formatting I chose makes sense (AFAIK I included all the examples from this and linked issues). |
Just want to bring this up if it is forgotten. I think it's the only annoying (and undoubtedly annoying) part of black formatting to me, Maybe a heuristic like this would work: combinations like |
Some context from me:
I would like to get back to the PR later this year but can't give any guarantees as to when that'll be. In the meantime, I welcome anyone to take over the work and make their own PR! |
Worst case scenario is that I take over the PR and try to push it to completion but unfortunately I've been extremely busy lately too so it'll have to wait at least more week before I have time (and even then the core team is busy figuring out the stable release). |
@ichard26 @aneeshusa Any idea how much more code work the PR needs? Or is it more of someone to shepherd it across the finish line? |
#1879 (comment) is still pretty accurate. Here's my take on action items, though I haven't looked at this code or black internals since I opened that PR.
If, based on profiling and maintainer feedback, the current approach in the PR is mostly acceptable, then it's more of a "take it across the finish". If the approach needs some rework then it'll require more investment depending on what changes are needed. |
Also, with the new stability policy, this change would need to go only into the |
Quick update: @olivia-hong who works with me on the Backend Language Tooling team at Lyft is going to be picking this work up again! |
Thank you @aneeshusa and @olivia-hong! Lyft was the go-to ride of choice for us in San Diego at DjangoCon US a few weeks ago. 😀 |
Posting an update here for visibility as well: I've updated the PR Aneesh originally put up and it's now fully ready for review #1879 (comment)! Comments/feedback are much appreciated. Since the issue is a few years old at this point, tagging some of the original reviewers @JelleZijlstra @ichard26 as an FYI. Apologies for any noise. |
This is possibly not a bug, but the results are unexpected and don't really seem to improve readability. However feel free to close if this is actually correct.
Operating system: Fedora 28
Python version: 3.6.5
Black version: 18.5b0
Does also happen on master: yes
Formatting this file uses some extra unexpected new lines:
The text was updated successfully, but these errors were encountered: