-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Bump pylint to 3.3.9, update changelog #10616
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jacobtylerwalls
merged 5 commits into
pylint-dev:maintenance/3.3.x
from
jacobtylerwalls:release-3.3.9-branch
Oct 5, 2025
Merged
Bump pylint to 3.3.9, update changelog #10616
jacobtylerwalls
merged 5 commits into
pylint-dev:maintenance/3.3.x
from
jacobtylerwalls:release-3.3.9-branch
Oct 5, 2025
Conversation
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
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## maintenance/3.3.x #10616 +/- ##
==================================================
Coverage 95.85% 95.85%
==================================================
Files 174 174
Lines 19029 19029
==================================================
Hits 18240 18240
Misses 789 789
🚀 New features to boost your workflow:
|
dca01b2 to
74af401
Compare
Pierre-Sassoulas
approved these changes
Oct 5, 2025
Co-authored-by: Pierre Sassoulas <[email protected]>
Co-authored-by: Pierre Sassoulas <[email protected]>
Member
Author
|
Thanks, I'll squash. |
4cab7ca
into
pylint-dev:maintenance/3.3.x
23 checks passed
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.3.9?
Release date: 2025-10-05
False Positives Fixed
Fix used-before-assignment for PEP 695 type aliases and parameters.
Closes
used-before-assignmentfalse positive fortypealias #9815No longer flag undeprecated functions in
importlib.resourcesas deprecated.Closes importlib resource API isn't deprecated #10593
Fix false positive
inconsistent-return-statementswhen usingquit()orexit()functions.Closes Inconsistent report of inconsistent-return-statements when using exit / quit #10508
Fix false positive
undefined-variable(E0602) for for-loop variable shadowing patterns likefor item in item:when the variable was previously defined.Closes False positive for E0602? #10562
Other Bug Fixes
Fixed crash in 'unnecessary-list-index-lookup' when starting an enumeration using
minus the length of an iterable inside a dict comprehension when the len call was only
made in this dict comprehension, and not elsewhere. Also changed the approach,
to use inference in all cases but the simple ones, so we don't have to fix crashes
one by one for arbitrarily complex expressions in enumerate.
Closes AstroidError crash on extremely specific enumerate to dictionary comprehension. #10510