summaryrefslogtreecommitdiff
path: root/astroid/tests
Commit message (Expand)AuthorAgeFilesLines
* Understand metaclasses added with six.add_metaclass decorator. Closes issue #...Claudiu Popa2015-07-071-0/+24
* Test Super.pytype, Super.display_type and Super.nameClaudiu Popa2015-07-071-0/+11
* Fix the body of namedtuple._replace: return the current self and don't actual...Claudiu Popa2015-07-061-0/+2
* Move pyreverse specific modules and functionality back into pyreverseClaudiu Popa2015-07-032-81/+1
* Infer the unary method retrieved from classes.Claudiu Popa2015-07-031-0/+13
* Add support for inferring methods masquerading as others for the binop protoc...Claudiu Popa2015-07-021-0/+14
* Add support for inferring subscript on instances, which will use __getitem__...Claudiu Popa2015-07-011-1/+25
* Add test for indexing results of tuple and list builtins.Claudiu Popa2015-07-011-1/+3
* Add test for indexing strings.Claudiu Popa2015-07-011-1/+2
* Add support for indexing bytes on Python 3.Claudiu Popa2015-07-011-0/+9
* 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-011-1/+13
* Star unpacking in assignments returns properly a list, not the individual com...Claudiu Popa2015-07-011-10/+13
* Add support for multiplication of tuples and lists with instances which provi...Claudiu Popa2015-06-301-0/+20
* Transform lambdas with a self argument at the class level to bound methods.Claudiu Popa2015-06-301-0/+17
* Fix the signature of __add__.Claudiu Popa2015-06-281-2/+2
* Ignore string interpolation with tuples and dictionaries for now.Claudiu Popa2015-06-281-0/+12
* Add support for retrieving TypeErrors for binary arithmetic operations and au...Claudiu Popa2015-06-281-4/+79
* Improve the inference of binary arithmetic operations (normal and augmented)Claudiu Popa2015-06-271-23/+402
* Add helpers.is_supertype and helpers.is_subtype, two functions for checking i...Claudiu Popa2015-06-261-17/+106
* Understand the one-argument form of the builtin *type*.Claudiu Popa2015-06-241-9/+28
* Add astroid.helpers, a module of various useful utilities which don't belong ...Claudiu Popa2015-06-241-0/+172
* NotImplemented is detected properly now as being part of the builtins module.Claudiu Popa2015-06-231-0/+8
* 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-211-0/+12
* Simplify a test.Claudiu Popa2015-06-201-56/+29
* Add `igetattr` method to scoped_nodes.Function.Claudiu Popa2015-06-201-1/+17
* Namedtuple's instance members gain a new .attrname attribute, since they're a...Claudiu Popa2015-06-201-0/+9
* Fix the wrong indentaton warning.Claudiu Popa2015-06-171-10/+10
* Add inference support for the `bool` builtin.Claudiu Popa2015-06-171-0/+42
* astroid.utils.ASTWalker and astroid.utils.LocalsVisitor were moved to pylint....Claudiu Popa2015-06-171-1/+1
* astroid.inspector was moved to pylint.pyreverse.Claudiu Popa2015-06-176-186/+0
* Fix a couple of pylint warnings.Claudiu Popa2015-06-171-2/+2
* Add inference support for `callable` builtin.Claudiu Popa2015-06-161-0/+78
* Add inference support for boolean operations (`and` and `not`).Claudiu Popa2015-06-161-5/+59
* Implement bool_value correctly for data structures.Claudiu Popa2015-06-161-0/+21
* Staticmethods retrieved with super are functions, not bound methods.Claudiu Popa2015-06-151-0/+6
* Add test for coercion rules for floats and complex numbers.Claudiu Popa2015-06-141-0/+16
* Allow inference of tuple(frozenset())Claudiu Popa2015-06-141-1/+3
* Add a new method to the AST nodes, 'bool_value'.Claudiu Popa2015-06-141-0/+98
* 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-131-15/+15
* Make the first steps towards detecting type errors for unary and binary opera...Claudiu Popa2015-06-111-2/+72
* Improve the inference of six.moves.Claudiu Popa2015-06-101-0/+86
* Improve the inference of UnaryOperands.Claudiu Popa2015-06-101-0/+47
* Don't leak StopIteration when inferring invalid UnaryOps.Claudiu Popa2015-06-091-0/+4
* Fix typo.Claudiu Popa2015-06-091-1/+1
* Add 'assert_equals' method in nose.tools's brain plugin.Claudiu Popa2015-06-091-1/+6
* Add inference support for hasattr builtin. Closes issue #102.Claudiu Popa2015-06-071-0/+52