summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fix a crash caused by a lookup of a monkey-patched method (#803)2.4Claudiu Popa2020-06-163-2/+24
* Start working on 2.4.3Claudiu Popa2020-06-162-1/+6
* Prepare 2.4.2astroid-2.4.2Claudiu Popa2020-06-081-1/+1
* Properly construct the arguments of infered property descriptors (#796)Claudiu Popa2020-05-283-9/+45
* Fix the new violations of super-without-argumentsClaudiu Popa2020-05-126-48/+44
* `FunctionDef.is_generator` properly handles `yield` nodes in `While` testsClaudiu Popa2020-05-124-1/+22
* Bump to 2.4.2 for the next versionClaudiu Popa2020-05-122-1/+6
* Prepare 2.4.1astroid-2.4.1Claudiu Popa2020-05-052-2/+2
* Protect against ``infer_call_result`` failing with `InferenceError` in `Super...Claudiu Popa2020-05-013-1/+38
* 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-04-302-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/+17
* 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