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

Release branch 2.15.1 #7393

Commits on Sep 1, 2022

  1. Configuration menu
    Copy the full SHA
    be90099 View commit details
    Browse the repository at this point in the history
  2. Fix crash while iteraring over a class attribute (pylint-dev#7386)

    Co-authored-by: orSolocate <38433858+orSolocate@users.noreply.github.com>
    2 people authored and Pierre-Sassoulas committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    9e2f535 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

  1. Fix false positive for too-many-function-args when a function cal…

    …l is assigned to a class attribute inside the class where the function is defined. (pylint-dev#7395)
    
    Closes pylint-dev#6592
    mbyrnepr2 authored and Pierre-Sassoulas committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    c4a770d View commit details
    Browse the repository at this point in the history
  2. Do not lint ignored file on stdin (pylint-dev#7220)

    Previously pylint would lint a file passed on stdin even if the user
    meant to ignore the file. This commit fixes that issue.
    
    Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
    2 people authored and Pierre-Sassoulas committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    8a8de1f View commit details
    Browse the repository at this point in the history
  3. Fix pylint-dev#3299 false positives with names in string literal type…

    … annotations (pylint-dev#7400)
    
    Don't emit 'unused-variable' or 'unused-import' on names in string literal type annotations (pylint-dev#3299)
    Don't treat strings inside typing.Literal as names
    lggruspe authored and Pierre-Sassoulas committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    05404f0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    35007f5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    939047e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f2ecf4f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7848356 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bf1cbd6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    62d0318 View commit details
    Browse the repository at this point in the history
  10. Fix and refactors for docparams extension (pylint-dev#7398)

    * Fix and refactors for ``docparams`` extension
    
    The ``re_only_desc`` regex did not match for white and characters after
    ``\n``, so some description-only lines weren't getting matched. In
    addition, lookaheads were added to ``re_param_line`` (i.e. make sure the
    type group is not followed by a new line (``\n``)). Lastly, named groups
    (ala Perl regular expressions) were added for slightly improved clarity.
    
    Co-authored-by: Hendry, Adam <adam.grant.hendry@gmail.com>
    2 people authored and Pierre-Sassoulas committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    7763d2a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f94c834 View commit details
    Browse the repository at this point in the history