Bump pylint to 3.0.4, update changelog#9458
Merged
Pierre-Sassoulas merged 1 commit intopylint-dev:maintenance/3.0.xfrom Feb 23, 2024
Merged
Bump pylint to 3.0.4, update changelog#9458Pierre-Sassoulas merged 1 commit intopylint-dev:maintenance/3.0.xfrom
Pierre-Sassoulas merged 1 commit intopylint-dev:maintenance/3.0.xfrom
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## maintenance/3.0.x #9458 +/- ##
==================================================
Coverage 95.78% 95.78%
==================================================
Files 173 173
Lines 18704 18704
==================================================
Hits 17916 17916
Misses 788 788
|
jacobtylerwalls
approved these changes
Feb 23, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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-assignmentis no longer emitted when using a name in a loop anddepending on an earlier name assignment in an
exceptblock paired withelse: continue.Closes False positive
used-before-assignmentwith try/else/continue #6804Avoid false positives for
no-memberinvolving 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-maxfor nested lists #9307Fix false positive for
used-before-assignmentin afinallyblockwhen assignments took place in both the
tryblock and each exception handler.Closes
used-before-assignmentFP 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