summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Squash one-off inference utility functions to help reduce recursion errors (#...Bryce Guinta2020-06-225-41/+29
* Fix exception causes all over the codebase (#806)Ram Rachum2020-06-208-37/+39
* Fix exception causes in helpers.pyRam Rachum2020-06-191-4/+4
* Fix a crash caused by a lookup of a monkey-patched method (#803)Claudiu Popa2020-06-163-2/+29
* `FunctionDef.is_generator` properly handles `yield` nodes in `If` tests (#799)Claudiu Popa2020-06-093-0/+22
* Prepare 2.4.2Claudiu Popa2020-06-081-1/+1
* Add exception inference for `UnicodeDecodeError` (#797)Claudiu Popa2020-05-293-0/+22
* Properly construct the arguments of infered property descriptors (#796)Claudiu Popa2020-05-283-9/+45
* brain_mechanize: Add missing methods to transform (#794)Peter Kolbus2020-05-282-2/+62
* Note the added parameters for subprocess.check_output().Peter Pentchev2020-05-281-0/+2
* Add more supported parameters to ``subprocess.check_output()``.Peter Pentchev2020-05-281-0/+10
* Drop support for Python 2 in READMEDavid Cain2020-05-211-1/+2
* Remove unneeded python2 test dataDavid Cain2020-05-2160-547/+1
* Cleanup formatting errorsClaudiu Popa2020-05-141-3/+7
* `FunctionDef.is_generator` properly handles `yield` nodes in `While` testsClaudiu Popa2020-05-124-1/+28
* Fix the new violations of super-without-argumentsClaudiu Popa2020-05-126-48/+44
* Add brain for sqlalchemy.orm.sessionStefan Scherfke2020-05-122-0/+33
* Released 2.4.1Claudiu Popa2020-05-051-1/+1
* 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-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