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
14
14
15
15
.. towncrier release notes start
16
16
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
+
17
40
What's new in Pylint 3.2.2?
18
41
---------------------------
19
42
Release date: 2024-05-20
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ load-plugins=
87
87
# Pickle collected data for later comparisons.
88
88
persistent =yes
89
89
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.
92
92
prefer-stubs =no
93
93
94
94
# 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
77
77
# Pickle collected data for later comparisons.
78
78
persistent = true
79
79
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 =
83
83
84
84
# Minimum Python version to use for version dependent checks. Will default to the
85
85
# version used to run pylint.
You can’t perform that action at this time.
0 commit comments