summaryrefslogtreecommitdiff
path: root/tests/unittest_inference.py
Commit message (Expand)AuthorAgeFilesLines
* Properly construct the arguments of infered property descriptors (#796)Claudiu Popa2020-05-281-0/+17
* Protect against ``infer_call_result`` failing with `InferenceError` in `Super...Claudiu Popa2020-05-011-0/+28
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-1/+7
* ``BoundMethod.implicit_parameters`` returns a proper value for ``__new__``Claudiu Popa2020-03-261-0/+21
* Allow `FunctionDef.getattr` to look into both instance attrs and special attr...Claudiu Popa2020-03-261-0/+16
* Remove Python 2 specific testsClaudiu Popa2020-03-101-24/+0
* Use pytest.xfail instead of unittest.expectedFailure to have a common decorat...Claudiu Popa2020-03-101-5/+5
* Prevent a recursion error for self reference variables and `type()` calls.Claudiu Popa2020-03-101-0/+20
* Add a new EvaluatedObject containerClaudiu Popa2020-03-101-4/+19
* Prevent a recursion error to happen when inferring the declared metaclass of ...Claudiu Popa2020-03-071-0/+9
* Do not infer the first argument of a staticmethod in a metaclass as the class...Claudiu Popa2020-03-071-0/+12
* 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-0/+22
* Add support for converting Property objects to stringsClaudiu Popa2020-03-061-0/+23
* Prevent a recursion error when inferring self-referential variables without d...Claudiu Popa2020-03-051-0/+17
* Reverse the order of decorators for `infer_subscript`Claudiu Popa2020-03-051-0/+21
* Verify the existence of datetime and date in ancestors instead of objectClaudiu Popa2020-03-031-1/+3
* Better inference of class and static methods decorated with custom methodsClaudiu Popa2020-03-031-0/+78
* Pass a context argument to ``astroid.Arguments`` to prevent recursion errorsClaudiu Popa2020-03-021-0/+11
* Infer qualified ``classmethod`` as a classmethod. (#759)Claudiu Popa2020-02-271-0/+21
* Use the parent of the node when inferring aug assign nodes instead of the sta...Claudiu Popa2020-01-051-0/+18
* Make use of cache while transform builtin containersStanislav Levin2019-12-231-0/+14
* Handle StopIteration error in infer_int.David Liu2019-12-091-0/+18
* Add support for inferring propertiesClaudiu Popa2019-12-041-0/+62
* Scope the inference to the current bound node when inferring instances of cla...Claudiu Popa2019-11-251-0/+52
* Allow attribute assignment for exception instancesClaudiu Popa2019-11-171-0/+22
* Add support for inferring exception instances in all contextsClaudiu Popa2019-11-171-7/+17
* Infer args unpacking of ``self``Claudiu Popa2019-11-141-0/+19
* Allow inferring positional only arguments on Python 3.8Claudiu Popa2019-11-141-0/+26
* Moved tests out of package directory (#704)Ashley Whetter2019-10-151-0/+5297