File tree Expand file tree Collapse file tree 3 files changed +28
-5
lines changed Expand file tree Collapse file tree 3 files changed +28
-5
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,29 @@ Summary -- Release highlights
1414
1515.. towncrier release notes start
1616
17+ What's new in Pylint 3.2.3?
18+ ---------------------------
19+ Release date: 2024-06-06
20+
21+
22+ False Positives Fixed
23+ ---------------------
24+
25+ - Classes with only an Ellipsis (``... ``) in their body do not trigger 'multiple-statements'
26+ anymore if they are inlined (in accordance with black's 2024 style).
27+
28+ Closes #9398 (`#9398 <https://github.com/pylint-dev/pylint/issues/9398 >`_)
29+
30+ - Fix a false positive for ``redefined-outer-name `` 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.
31+
32+ Closes #9671 (`#9671 <https://github.com/pylint-dev/pylint/issues/9671 >`_)
33+
34+ - Fix a false positive for ``use-yield-from `` when using the return value from the ``yield `` atom.
35+
36+ Closes #9696 (`#9696 <https://github.com/pylint-dev/pylint/issues/9696 >`_)
37+
38+
39+
1740What's new in Pylint 3.2.2?
1841---------------------------
1942Release date: 2024-05-20
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ load-plugins=
8787# Pickle collected data for later comparisons.
8888persistent =yes
8989
90- # Resolve imports to .pyi stubs if available. May reduce no-member messages
91- # and increase not-an-iterable messages.
90+ # Resolve imports to .pyi stubs if available. May reduce no-member messages and
91+ # increase not-an-iterable messages.
9292prefer-stubs =no
9393
9494# Minimum Python version to use for version dependent checks. Will default to
Original file line number Diff line number Diff line change @@ -77,9 +77,9 @@ limit-inference-results = 100
7777# Pickle collected data for later comparisons.
7878persistent = true
7979
80- # Resolve imports to .pyi stubs if available. May reduce no-member messages
81- # and increase not-an-iterable messages.
82- prefer-stubs = false
80+ # Resolve imports to .pyi stubs if available. May reduce no-member messages and
81+ # increase not-an-iterable messages.
82+ # prefer-stubs =
8383
8484# Minimum Python version to use for version dependent checks. Will default to the
8585# version used to run pylint.
You can’t perform that action at this time.
0 commit comments