summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | | Do not crash with SyntaxError when parsing namedtuples with invalid labelClaudiu Popa2020-05-013-0/+18
* | | Changed `python_requires` to use ">=" syntax (#780)Colin Kennedy2020-05-012-1/+5
* | | Exclude tests from getting installed from source distributionClaudiu Popa2020-05-012-1/+3
* | | Restructure the AST parsing heuristic to always pick the same moduleClaudiu Popa2020-04-294-103/+143
* | | Handle the case where the raw builder fails to retrieve the ``__all__`` attri...Claudiu Popa2020-04-282-1/+18
* | | master is now 2.5.0Claudiu Popa2020-04-282-1/+6
* | | Prepare 2.4.0 release of astroidastroid-2.4.0Claudiu Popa2020-04-272-1/+2
* | | Add missing copyright annotations for the past releasesClaudiu Popa2020-04-2779-98/+220
* | | 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-032-0/+7
* | | Add posonlyargs_annotations to Arguments.get_children()Claudiu Popa2020-03-281-0/+6
* | | Add posonlyargs_annotations to Arguments.as_string()Claudiu Popa2020-03-282-1/+13
* | | ``BoundMethod.implicit_parameters`` returns a proper value for ``__new__``Claudiu Popa2020-03-263-0/+28
* | | Allow `FunctionDef.getattr` to look into both instance attrs and special attr...Claudiu Popa2020-03-263-2/+26
* | | Allow slots added dynamically to a class to still be inferredClaudiu Popa2020-03-133-3/+35
* | | Merge TreeRebuilder3 into TreeRebuilderClaudiu Popa2020-03-121-165/+111
* | | Add a regression test for inferring self in lambdaClaudiu Popa2020-03-121-0/+12
* | | 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-112-33/+8
* | | Add a new ast_from_string method to AstroidManagerAnubhav2020-03-113-0/+22
* | | Remove Python 2 specific testsClaudiu Popa2020-03-106-354/+0
* | | Use pytest.xfail instead of unittest.expectedFailure to have a common decorat...Claudiu Popa2020-03-102-7/+7
* | | Change test that expected as_string() to return a particular number of newlinesClaudiu Popa2020-03-101-7/+6
* | | Infer the __len__ result of a subclass of an integerClaudiu Popa2020-03-102-6/+18
* | | Call super() for EvaluatedObjectClaudiu Popa2020-03-101-3/+5
* | | Prevent a recursion error for self reference variables and `type()` calls.Claudiu Popa2020-03-103-1/+32
* | | Add a new EvaluatedObject containerClaudiu Popa2020-03-105-7/+65
* | | Prevent a recursion error to happen when inferring the declared metaclass of ...Claudiu Popa2020-03-076-1/+35
* | | Do not infer the first argument of a staticmethod in a metaclass as the class...Claudiu Popa2020-03-073-2/+23
* | | Raise ``AttributeInferenceError`` when ``getattr()`` receives an empty nameClaudiu Popa2020-03-063-0/+32
* | | Cache the inference of FunctionDef to prevent property inference mutating localsClaudiu Popa2020-03-062-1/+45
* | | 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-062-0/+26
* | | Prevent a recursion error when inferring self-referential variables without d...Claudiu Popa2020-03-053-1/+22
* | | ``NodeNG.bool_value()`` gained an optional ``context`` parameterClaudiu Popa2020-03-055-19/+28
* | | Reverse the order of decorators for `infer_subscript`Claudiu Popa2020-03-053-3/+32
* | | Transform boto3.ServiceRequest to look like dynamic classClaudiu Popa2020-03-041-0/+28
* | | Disable test on PyPy since we cannot get 7.2 easily without manually installi...Claudiu Popa2020-03-031-1/+7
* | | Verify the existence of datetime and date in ancestors instead of objectClaudiu Popa2020-03-031-1/+3
* | | Try to update pypy to 3.6.1Claudiu Popa2020-03-031-1/+1
* | | Better inference of class and static methods decorated with custom methodsClaudiu Popa2020-03-033-0/+97
* | | Wrap coverage in quotesClaudiu Popa2020-03-021-1/+1
* | | Force coverage<5 in travis just like in toxClaudiu Popa2020-03-021-1/+1
* | | 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-024-14/+44
* | | Infer qualified ``classmethod`` as a classmethod. (#759)Claudiu Popa2020-02-273-5/+40
* | | Relax upper bound on `wrapt` (#756)Michael2020-02-273-2/+6