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: v4.0.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: v4.0.4
Choose a head ref
  • 13 commits
  • 30 files changed
  • 8 contributors

Commits on Oct 26, 2025

  1. [Backport maintenance/4.0.x] Fix FP for invalid-name with `typing.A…

    …nnotated` (#10701)
    
    Fix FP for `invalid-name` with `typing.Annotated` (#10699)
    
    (cherry picked from commit bb9df16)
    
    Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
    pylint-backport[bot] and jacobtylerwalls authored Oct 26, 2025
    Configuration menu
    Copy the full SHA
    aeffe52 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2025

  1. [Backport maintenance/4.0.x] Fix false positive for `f-string-without…

    …-interpolation` with template strings when using format spec (#10717)
    
    Fix false positive for `f-string-without-interpolation` with template strings when using format spec (#10716)
    
    (cherry picked from commit d2589f1)
    
    Co-authored-by: Zen Lee <53538590+zenlyj@users.noreply.github.com>
    pylint-backport[bot] and zenlyj authored Nov 3, 2025
    Configuration menu
    Copy the full SHA
    fc920b6 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2025

  1. [Backport maintenance/4.0.x] Add Enum dunder to the list of allowed d…

    …under (#10725)
    
    Add Enum dunder to the list of allowed dunder (#10722)
    
    
    
    (cherry picked from commit 0426f8b)
    
    Co-authored-by: Trinh Quoc Anh <trinhquocanh94@gmail.com>
    Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
    Co-authored-by: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
    4 people authored Nov 8, 2025
    Configuration menu
    Copy the full SHA
    1a26dea View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2025

  1. [Backport maintenance/4.0.x] Fix a false positive for ``unbalanced-tu…

    …ple-unpacking``. (#10726)
    
    Fix a false positive for ``unbalanced-tuple-unpacking``. (#10724)
    
    * Fix a false positive for ``unbalanced-tuple-unpacking`` when a tuple is assigned to a function call and the structure of the function's return value is ambiguous.
    
    Closes #10721
    
    
    (cherry picked from commit 1496340)
    
    Co-authored-by: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
    Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
    3 people authored Nov 9, 2025
    Configuration menu
    Copy the full SHA
    b128b7d View commit details
    Browse the repository at this point in the history
  2. [Backport maintenance/4.0.x] Fix crash when a slice object is called (

    #10728)
    
    Fix crash when a `slice` object is called (#10715)
    
    
    (cherry picked from commit 0a2cb33)
    
    Co-authored-by: Zen Lee <53538590+zenlyj@users.noreply.github.com>
    Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
    3 people authored Nov 9, 2025
    Configuration menu
    Copy the full SHA
    0ed8172 View commit details
    Browse the repository at this point in the history
  3. [Backport maintenance/4.0.x] Fix a false positive for class attribute…

    … typed with Final (#10727)
    
    Fix a false positive for class attribute typed with Final (#10712)
    
    
    (cherry picked from commit 133681e)
    
    Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
    Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
    3 people authored Nov 9, 2025
    Configuration menu
    Copy the full SHA
    108191e View commit details
    Browse the repository at this point in the history
  4. [Backport maintenance/4.0.x] Fix crash when a variable annotation is …

    …used as `if` test expression (#10729)
    
    Fix crash when a variable annotation is used as `if` test expression (#10714)
    
    Fix crash for ``consider-using-assignment-expr``.
    
    (cherry picked from commit 926529b)
    
    Co-authored-by: Zen Lee <53538590+zenlyj@users.noreply.github.com>
    pylint-backport[bot] and zenlyj authored Nov 9, 2025
    Configuration menu
    Copy the full SHA
    c96a9e4 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2025

  1. [Backport maintenance/4.0.x] Upgrade astroid to 4.0.2 (#10733)

    Upgrade astroid to 4.0.2 (#10730)
    
    Closes #10624
    
    (cherry picked from commit 361a2b8)
    
    Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
    pylint-backport[bot] and Pierre-Sassoulas authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    755f2d0 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2025

  1. [Backport maintenance/4.0.x] fix(expand_modules): pass ignore_list to…

    … modutils.get_module_files (#10740)
    
    fix(expand_modules): pass ignore_list to modutils.get_module_files (#10720)
    
    (cherry picked from commit cd2839d)
    
    Co-authored-by: shifqu <sonny@softllama.net>
    pylint-backport[bot] and shifqu authored Nov 13, 2025
    Configuration menu
    Copy the full SHA
    77b0cd8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    84b6552 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2025

  1. [Backport maintenance/4.0.x] fix: avoid false positive when module-le…

    …vel names match class-level names (#10753)
    
    fix: avoid false positive when module-level names match class-level names (#10723)
    
    Add scope comparision to avoid module-level constants to be incorrectly
    classified as variables when a class-level attribute with the same name exists
    
    Closes #10719
    
    (cherry picked from commit e55e830)
    
    Co-authored-by: Joao Faria <joaovitorfaria.dev@gmail.com>
    pylint-backport[bot] and joao-faria-dev authored Nov 22, 2025
    Configuration menu
    Copy the full SHA
    03f8a92 View commit details
    Browse the repository at this point in the history
  2. [Backport maintenance/4.0.x] [invalid-name] Fix FP for exclusive assi…

    …gnment of objects (#10754)
    
    [invalid-name] Fix FP for exclusive assignment of objects (#10746)
    
    (cherry picked from commit d308554)
    
    Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
    pylint-backport[bot] and jacobtylerwalls authored Nov 22, 2025
    Configuration menu
    Copy the full SHA
    657b386 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2025

  1. Configuration menu
    Copy the full SHA
    e16f942 View commit details
    Browse the repository at this point in the history
Loading