8000 Comparing v3.2.2...v3.2.3 · pylint-dev/pylint · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pylint-dev/pylint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.2
Choose a base ref
...
head repository: pylint-dev/pylint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.3
Choose a head ref
  • 4 commits
  • 15 files changed
  • 4 contributors

Commits on Jun 4, 2024

  1. Fix a false positive for redefined-outer-name (#9678) (#9695)

    When there is a name defined in an exception-handling block which shares the same name
    as a local variable that has been defined in a function body. Check if the outer node is in the
    scope of an exception assignment and do not emit ``redefined-outer-name`` if that is the case.
    
    Closes #9671
    
    (cherry picked from commit 57ae027)
    
    Co-authored-by: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
    github-actions[bot] and mbyrnepr2 authored Jun 4, 2024
    Configuration menu
    Copy the full SHA
    7e5e4f9 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. [multiple-statements] Make pylint compatible with black's 2024 style (#…

    …9697) (#9698)
    
    * Add more test cases to cover pass / ...
    * Define the confidence as HIGH
    * Exclude the class with Ellipsis from the check
    
    Closes #9398
    
    (cherry picked from commit afd5edf)
    
    Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
    github-actions[bot] and Pierre-Sassoulas authored Jun 5, 2024
    Configuration menu
    Copy the full SHA
    192727b View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Fix false positive in use-yield-from when using yield return (#9700

    …) (#9701)
    
    If the return value from `yield` is inspected inline, such as by
    (augmented) assignment, changing the looped `yield` to `yield from` is
    very likely to change the semantics of the generator, since there is an
    implicit use of `generator.send`.
    
    Closes #9696
    
    (cherry picked from commit ea73bae)
    
    Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
    github-actions[bot] and jakelishman authored Jun 6, 2024
    Configuration menu
    Copy the full SHA
    8aba7d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    918d216 View commit details
    Browse the repository at this point in the history
Loading
0