Giter Club home page Giter Club logo

Comments (8)

ambv avatar ambv commented on May 13, 2024 1

Kenneth's right. The README states you should be able to reformat even well-behaved Python 2.7 code. This is simply an omission on my part because I don't run Python 2.7 on my own projects anymore.

But, the **kwargs trailing comma is such a small thing to fix that will unlock compatibility with 2.7-3.5 that I'm going to do it for sure.

from black.

brianbruggeman avatar brianbruggeman commented on May 13, 2024

I don't think this is an issue. The docs clearly state python3.6+ compatibility.

from black.

kennethreitz avatar kennethreitz commented on May 13, 2024

No, the tool is to be run on Python 3.6, but is to produce code compatible with even Python 2.

from black.

njsmith avatar njsmith commented on May 13, 2024

Watch out that this also affects

def foo(*args,):  # error on 3.5 and earlier
    ...

def foo(a, *, b,): # error on 3.5 and earlier
    ...

(For reference it's bpo-9232.)

from black.

ambv avatar ambv commented on May 13, 2024

Yes, I'm familiar with the additional forms. Essentially, whenever the argument list includes a star, it's no longer safe to use a trailing comma unless such trailing comma or an f-string was already present in the file (which signifies the code is already 3.6+).

from black.

kennethreitz avatar kennethreitz commented on May 13, 2024

from black.

ambv avatar ambv commented on May 13, 2024

Yes, that's the flip side. An easy way to spot those for you would be to run:

$ python3.5 -m compileall .

in your directory and see where you have failures. Hopefully there's not going to be too many. Let me know, if so I'll add a temporary option to never add trailing commas so you can fix your early adopter misformattings :-)

from black.

ambv avatar ambv commented on May 13, 2024

This is now fixed as described above. @kennethreitz, let me know if you need help with unbreaking the 3.6-only formattings in your code. If those are pushed to GitHub, I will happily make a pull request that undoes the damage.

from black.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.