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

Deprecate passing formatting parameters positionally to stem() #21126

Merged
merged 1 commit into from Sep 24, 2021

Commits on Sep 23, 2021

  1. Make stem formatting parameters keyword only.

    This will allow to simplify the implementation because, currently,
    `stem(*args, linefmt=None, ...)` still tries to resolve excess
    positionally passed args, to *linefmt* and following parameters, which
    is quite a bit of logic.
    
    OTOH, since we have 3 formats, passing them positionally is already
    difficult from a usability/readability perspective, because they can
    easily be mixed up.
    timhoffm committed Sep 23, 2021
    Copy the full SHA
    88cdf1b View commit details
    Browse the repository at this point in the history