summaryrefslogtreecommitdiff
path: root/astroid
Commit message (Expand)AuthorAgeFilesLines
...
* | | Protect against ``infer_call_result`` failing with `InferenceError` in `Super...Claudiu Popa2020-05-011-1/+6
* | | Do not crash with SyntaxError when parsing namedtuples with invalid labelClaudiu Popa2020-05-011-0/+2
* | | Restructure the AST parsing heuristic to always pick the same moduleClaudiu Popa2020-04-293-103/+138
* | | Handle the case where the raw builder fails to retrieve the ``__all__`` attri...Claudiu Popa2020-04-281-1/+8
* | | master is now 2.5.0Claudiu Popa2020-04-281-1/+1
* | | Prepare 2.4.0 release of astroidastroid-2.4.0Claudiu Popa2020-04-271-0/+1
* | | Add missing copyright annotations for the past releasesClaudiu Popa2020-04-2752-60/+128
* | | Transform read_module() into a lambda to prevent it being marked as a bound m...Claudiu Popa2020-04-271-1/+1
* | | Export `six.moves.reload_module` from `importlib` not `imp`Claudiu Popa2020-04-271-1/+2
* | | Fix formatting errorClaudiu Popa2020-04-031-1/+1
* | | Inspect compiled CFFI extension membersRobin Jarry2020-04-031-0/+5
* | | Add posonlyargs_annotations to Arguments.get_children()Claudiu Popa2020-03-281-0/+6
* | | Add posonlyargs_annotations to Arguments.as_string()Claudiu Popa2020-03-281-1/+7
* | | ``BoundMethod.implicit_parameters`` returns a proper value for ``__new__``Claudiu Popa2020-03-261-0/+3
* | | Allow `FunctionDef.getattr` to look into both instance attrs and special attr...Claudiu Popa2020-03-261-2/+6
* | | Allow slots added dynamically to a class to still be inferredClaudiu Popa2020-03-131-3/+15
* | | Merge TreeRebuilder3 into TreeRebuilderClaudiu Popa2020-03-121-165/+111
* | | Add an optional `path` parameter to `modpath_from_file`Claudiu Popa2020-03-111-16/+21
* | | Kill `extrapath` from various `modutils` functions as it was not usedClaudiu Popa2020-03-111-25/+8
* | | Add a new ast_from_string method to AstroidManagerAnubhav2020-03-111-0/+7
* | | Infer the __len__ result of a subclass of an integerClaudiu Popa2020-03-101-2/+11
* | | Call super() for EvaluatedObjectClaudiu Popa2020-03-101-3/+5
* | | Prevent a recursion error for self reference variables and `type()` calls.Claudiu Popa2020-03-101-1/+8
* | | Add a new EvaluatedObject containerClaudiu Popa2020-03-104-3/+46
* | | Prevent a recursion error to happen when inferring the declared metaclass of ...Claudiu Popa2020-03-071-1/+2
* | | Do not infer the first argument of a staticmethod in a metaclass as the class...Claudiu Popa2020-03-071-2/+7
* | | Raise ``AttributeInferenceError`` when ``getattr()`` receives an empty nameClaudiu Popa2020-03-061-0/+14
* | | Cache the inference of FunctionDef to prevent property inference mutating localsClaudiu Popa2020-03-061-1/+23
* | | Reverse super call with setting the function to allow string representation b...Claudiu Popa2020-03-061-1/+1
* | | Merge AsStringVisitor3 into AsStringVisitor since we no longer support Python 2Claudiu Popa2020-03-061-110/+71
* | | Add support for converting Property objects to stringsClaudiu Popa2020-03-061-0/+3
* | | Prevent a recursion error when inferring self-referential variables without d...Claudiu Popa2020-03-051-1/+1
* | | ``NodeNG.bool_value()`` gained an optional ``context`` parameterClaudiu Popa2020-03-054-19/+19
* | | Reverse the order of decorators for `infer_subscript`Claudiu Popa2020-03-051-3/+4
* | | Transform boto3.ServiceRequest to look like dynamic classClaudiu Popa2020-03-041-0/+28
* | | Better inference of class and static methods decorated with custom methodsClaudiu Popa2020-03-031-0/+15
* | | Pass a context to Arguments.call_site() callsClaudiu Popa2020-03-024-9/+9
* | | Pass a context argument to ``astroid.Arguments`` to prevent recursion errorsClaudiu Popa2020-03-022-14/+29
* | | Infer qualified ``classmethod`` as a classmethod. (#759)Claudiu Popa2020-02-271-5/+15
* | | Relax upper bound on `wrapt` (#756)Michael2020-02-271-1/+1
* | | numpy.astype now returns a ndarray objecthippo912020-02-101-1/+5
* | | Skip non ``Assign`` and ``AnnAssign`` nodes from enum reinterpretationClaudiu Popa2020-02-101-0/+2
* | | Don't crash upon invalid contex on attr. inference (#746)Leandro T. C. Melo2020-02-101-0/+2
* | | Make imag and real attributes numpy.ndarrayhippo912020-02-101-2/+2
* | | Revert the redefinition of type_comment_kwonlyargsClaudiu Popa2020-01-121-1/+0
* | | Make sure type_comment_kwonlyargs is set as wellClaudiu Popa2020-01-121-0/+1
* | | Fix unbound local error caused by 061aaebea2be2d21831ef687cc4ba4a25d953c65Claudiu Popa2020-01-122-1/+2
* | | Can access positional only and keyword only argument type commentsAshley Whetter2020-01-112-0/+42
* | | Return a stub module instead of an import error for frozen modulesAshley Whetter2020-01-111-0/+2
* | | Use the parent of the node when inferring aug assign nodes instead of the sta...Claudiu Popa2020-01-051-3/+2