summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Modernize test to use extract_node.Claudiu Popa2015-07-011-18/+11
* Mark a test as an expected failure: not all staticmethod and classmethods are...Claudiu Popa2015-07-011-1/+2
* Add annotation support for function.as_string(). Closes issue #37.Claudiu Popa2015-07-014-9/+35
* Merged in jarradhope/astroid (pull request #73)Claudiu Popa2015-07-012-6/+17
|\
| * add returns annotationjarradhope2015-04-261-2/+5
| * annotations = Nonejarradhope2015-04-261-1/+3
| * Merged logilab/astroid into defaultJarrad Hope2015-04-263-1/+30
| |\
| * | add annotations to as_string method of Argumentsjarradhope2015-04-261-4/+10
* | | Pin dependency of logilab.common to 0.63.2 for now.Claudiu Popa2015-07-011-1/+1
* | | Star unpacking in assignments returns properly a list, not the individual com...Claudiu Popa2015-07-013-12/+21
* | | Remove trailing whitespace.Claudiu Popa2015-06-301-1/+1
* | | Add support for multiplication of tuples and lists with instances which provi...Claudiu Popa2015-06-303-6/+59
* | | Transform lambdas with a self argument at the class level to bound methods.Claudiu Popa2015-06-303-0/+31
* | | Add a couple of pragma disables for some false positives.Claudiu Popa2015-06-302-0/+3
* | | Fix the signature of __add__.Claudiu Popa2015-06-281-2/+2
* | | Emit YES for all string operations operands, it will be implemented later.Claudiu Popa2015-06-281-3/+2
* | | Return NotImplemented for inferring binary operations between consts and othe...Claudiu Popa2015-06-281-1/+3
* | | Ignore string interpolation with tuples and dictionaries for now.Claudiu Popa2015-06-282-0/+16
* | | Add support for retrieving TypeErrors for binary arithmetic operations and au...Claudiu Popa2015-06-285-19/+175
* | | Move UnaryOp code to be closer to BinaryOp.Claudiu Popa2015-06-281-56/+57
* | | Improve the inference of binary arithmetic operations (normal and augmented)Claudiu Popa2015-06-275-136/+700
* | | Add helpers.is_supertype and helpers.is_subtype, two functions for checking i...Claudiu Popa2015-06-264-34/+187
* | | Add __reversed__ special method to deques.Claudiu Popa2015-06-261-2/+3
* | | Remove trailing whitespace.Claudiu Popa2015-06-241-1/+1
* | | Understand the one-argument form of the builtin *type*.Claudiu Popa2015-06-243-11/+45
* | | Add astroid.helpers, a module of various useful utilities which don't belong ...Claudiu Popa2015-06-244-1/+275
* | | NotImplemented is detected properly now as being part of the builtins module.Claudiu Popa2015-06-234-1/+17
* | | Remove trailing whitespace and use the correct argument to require_version.Claudiu Popa2015-06-211-2/+2
* | | Add support for Python 3.5's MatMul infix operator. See PEP 465 for more deta...Claudiu Popa2015-06-214-0/+24
* | | Fix a couple of style issues:Claudiu Popa2015-06-211-186/+164
* | | Simplify a test.Claudiu Popa2015-06-201-56/+29
* | | Add `igetattr` method to scoped_nodes.Function.Claudiu Popa2015-06-203-1/+27
* | | Namedtuple's instance members gain a new .attrname attribute, since they're a...Claudiu Popa2015-06-202-0/+10
* | | Fix the wrong indentaton warning.Claudiu Popa2015-06-171-10/+10
* | | Add inference support for the `bool` builtin.Claudiu Popa2015-06-173-0/+69
* | | astroid.utils.ASTWalker and astroid.utils.LocalsVisitor were moved to pylint....Claudiu Popa2015-06-173-103/+4
* | | Remove TreeTester and _check_children.Claudiu Popa2015-06-171-136/+0
* | | astroid.inspector was moved to pylint.pyreverse.Claudiu Popa2015-06-178-459/+4
* | | Fix a couple of pylint warnings.Claudiu Popa2015-06-172-6/+4
* | | Add inference support for `callable` builtin.Claudiu Popa2015-06-163-7/+110
* | | Fix pylint warnings.Claudiu Popa2015-06-161-4/+2
* | | Add inference support for boolean operations (`and` and `not`).Claudiu Popa2015-06-164-11/+121
* | | Implement bool_value correctly for data structures.Claudiu Popa2015-06-164-10/+40
* | | Staticmethods retrieved with super are functions, not bound methods.Claudiu Popa2015-06-152-1/+7
* | | Add test for coercion rules for floats and complex numbers.Claudiu Popa2015-06-141-0/+16
* | | Allow inference of tuple(frozenset())Claudiu Popa2015-06-142-5/+7
* | | Remove trailing whitespace.Claudiu Popa2015-06-141-5/+5
* | | Add a new method to the AST nodes, 'bool_value'.Claudiu Popa2015-06-146-8/+218
* | | Add test for testing multiple unary operations on the same operand.Claudiu Popa2015-06-131-1/+5
* | | Use the name of the operand for UnaryOperationError.__str__.Claudiu Popa2015-06-132-16/+16