summaryrefslogtreecommitdiff
path: root/ChangeLog
Commit message (Expand)AuthorAgeFilesLines
* Some nodes got a new attribute, 'ctx', which tells in which context the said ...Claudiu Popa2015-12-081-0/+8
* relative_to_absolute_name will now raise TooManyLevelsError when a relative i...Claudiu Popa2015-12-061-0/+3
* AstroidBuildingException is now AstroidBuildingError.Claudiu Popa2015-12-061-0/+3
* Add two new exceptions, AstroidImportError and AstroidSyntaxError.Claudiu Popa2015-12-061-0/+8
* assigned_stmts methods have the same signature from now on.Claudiu Popa2015-12-051-0/+11
* Don't forget to give credit to the original author.Claudiu Popa2015-12-011-1/+1
* Use printf-style formatting in as_string, in orderClaudiu Popa2015-12-011-1/+16
* Class.getattr('__mro__') returns the actual MRO.Claudiu Popa2015-10-261-0/+3
* Add support for indexing containers with instances which provides an __index_...Claudiu Popa2015-10-221-0/+3
* Add a new node, DictUnpack, for representing the unpacking of a dict using PE...Claudiu Popa2015-10-061-0/+9
* Add brain tip for understanding numpy.core's mutation of the __all__ variableClaudiu Popa2015-09-241-0/+2
* Understand the `slice` builtin. Closes issue #184.Claudiu Popa2015-09-111-0/+2
* Add support for understanding class creation using `type.__new__(mcs, name, b...Claudiu Popa2015-09-021-0/+7
* Add ChangeLog entries for the newest changes.Claudiu Popa2015-08-251-0/+20
* Understand slices of tuples, lists, strings and instances with support for sl...Claudiu Popa2015-08-211-0/+5
* Class._explicit_metaclass is now a public API, in the form of Class.declared_...Claudiu Popa2015-08-041-1/+7
* There's a new separate step for transforms.Claudiu Popa2015-08-021-0/+25
* Class.getattr looks by default in the implicit and the explicit metaclasses, ...Claudiu Popa2015-07-261-0/+5
* Add get_wrapping_class API to scoped_nodes, which can be used to retrieve the...Claudiu Popa2015-07-261-0/+3
* Add changelog entry.Florian Bruhin2015-07-251-0/+3
* do_import_module passes the proper relative_only flag if the level is higher ...Claudiu Popa2015-07-141-0/+6
* Add a new convenience API, `astroid.parse`.Claudiu Popa2015-07-111-0/+6
* Understand metaclasses added with six.add_metaclass decorator. Closes issue #...Claudiu Popa2015-07-071-0/+2
* Move pyreverse specific modules and functionality back into pyreverseClaudiu Popa2015-07-031-0/+3
* Add ChangeLog entry for the last commit.Claudiu Popa2015-07-021-0/+2
* Add support for inferring subscript on instances, which will use __getitem__...Claudiu Popa2015-07-011-0/+3
* Add support for indexing bytes on Python 3.Claudiu Popa2015-07-011-0/+2
* Add annotation support for function.as_string(). Closes issue #37.Claudiu Popa2015-07-011-0/+2
* Star unpacking in assignments returns properly a list, not the individual com...Claudiu Popa2015-07-011-0/+3
* Add support for multiplication of tuples and lists with instances which provi...Claudiu Popa2015-06-301-0/+3
* Transform lambdas with a self argument at the class level to bound methods.Claudiu Popa2015-06-301-0/+3
* Add support for retrieving TypeErrors for binary arithmetic operations and au...Claudiu Popa2015-06-281-0/+7
* Improve the inference of binary arithmetic operations (normal and augmented)Claudiu Popa2015-06-271-0/+3
* Add helpers.is_supertype and helpers.is_subtype, two functions for checking i...Claudiu Popa2015-06-261-0/+3
* Understand the one-argument form of the builtin *type*.Claudiu Popa2015-06-241-0/+5
* Add astroid.helpers, a module of various useful utilities which don't belong ...Claudiu Popa2015-06-241-0/+5
* NotImplemented is detected properly now as being part of the builtins module.Claudiu Popa2015-06-231-0/+4
* Add support for Python 3.5's MatMul infix operator. See PEP 465 for more deta...Claudiu Popa2015-06-211-0/+3
* Add `igetattr` method to scoped_nodes.Function.Claudiu Popa2015-06-201-0/+2
* Add inference support for the `bool` builtin.Claudiu Popa2015-06-171-0/+2
* astroid.utils.ASTWalker and astroid.utils.LocalsVisitor were moved to pylint....Claudiu Popa2015-06-171-0/+3
* astroid.inspector was moved to pylint.pyreverse.Claudiu Popa2015-06-171-0/+4
* Add inference support for `callable` builtin.Claudiu Popa2015-06-161-0/+2
* Add inference support for boolean operations (`and` and `not`).Claudiu Popa2015-06-161-0/+2
* Add a new method to the AST nodes, 'bool_value'.Claudiu Popa2015-06-141-0/+9
* Make the first steps towards detecting type errors for unary and binary opera...Claudiu Popa2015-06-111-0/+11
* Improve the inference of six.moves.Claudiu Popa2015-06-101-0/+4
* Improve the inference of UnaryOperands.Claudiu Popa2015-06-101-0/+6
* Don't leak StopIteration when inferring invalid UnaryOps.Claudiu Popa2015-06-091-0/+2
* Add 'assert_equals' method in nose.tools's brain plugin.Claudiu Popa2015-06-091-0/+2