Bump pylint to 3.0.4, update changelog #9458
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What's new in Pylint 3.0.4?
Release date: 2024-02-23
False Positives Fixed
used-before-assignment
is no longer emitted when using a name in a loop anddepending on an earlier name assignment in an
except
block paired withelse: continue
.Closes False positive
used-before-assignment
with try/else/continue #6804Avoid false positives for
no-member
involving functionattributes supplied by decorators.
Closes Attributes on functions supplied by decorators trigger
no-member
#9246Fixed false positive nested-min-max for nested lists.
Closes False positive
nested-min-max
for nested lists #9307Fix false positive for
used-before-assignment
in afinally
blockwhen assignments took place in both the
try
block and each exception handler.Closes
used-before-assignment
FP in finally #9451Other Bug Fixes
Catch incorrect ValueError
"generator already executing"
for Python 3.12.0 - 3.12.2.This is fixed upstream in Python 3.12.3.
Closes Python 3.12 - ValueError: generator already executing #9138