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 astroid 3.2.0?
Release date: TBA
.pyi
stub files are now preferred over.py
files when resolving imports, (except for numpy).Closes pylint-dev/#9185
igetattr()
returns the last same-named function in a class (instead ofthe first). This avoids false positives in pylint with
@overload
.Closes false not-an-iterable for class method with @overload (2.5.7 regression) #1015
Refs methods that return a sequence yield unpacking-non-sequence pylint#4696
Adds
module_denylist
toAstroidManager
for modules to be skipped during ASTgeneration. Modules in this list will cause an
AstroidImportError
to be raisedwhen an AST for them is requested.
Refs Azure import try/except over doubles pylint memory usage pylint#9442
Make
astroid.interpreter._import.util.is_namespace
only consider modulesusing a loader set to
NamespaceLoader
orNone
as namespaces.This fixes a problem that
six.moves
brain was not effective ifsix.moves
was already imported.
Closes
astroid.nodes.node_classes.If.is_typing_guard()
is very fragile #1107