summaryrefslogtreecommitdiff
path: root/ChangeLog
Commit message (Expand)AuthorAgeFilesLines
* Fix typosJakub Wilk2016-06-021-8/+8
* Stop saving assignment locals in ExceptHandlers, when the context is a store.Claudiu Popa2016-05-251-0/+7
* Fix a crash which occurred when the class of a namedtuple could not be inferred.Claudiu Popa2016-05-201-0/+2
* Add Changelog entry for namespace packages.Claudiu Popa2016-05-091-1/+12
* Don't crash when a decorated method has the same name as the decorator, which...Claudiu Popa2016-04-301-0/+3
* Improve inference with regard redefinition of values in subclassesClaudiu Popa2016-04-261-1/+7
* Calling lambda methods (defined at class level) can be understood.Claudiu Popa2016-04-261-0/+2
* Don't take in consideration invalid assignments, especially when __slots__ de...Claudiu Popa2016-04-251-0/+5
* Functional form of enums support accessing values through __call__.Claudiu Popa2016-04-131-0/+1
* Add brain tips for the ssl library.Claudiu Popa2016-03-241-0/+2
* decoratornames() does not leak InferenceError anymore.Claudiu Popa2016-03-111-0/+2
* imported_names() got replaced by public_names()Claudiu Popa2016-02-201-0/+14
* Fix unpack_infer to fail if results are emptyDave Baum2016-01-151-0/+3
* Support accessing properties using super().Claudiu Popa2016-01-141-0/+2
* Enforce strong updates per frames.Claudiu Popa2016-01-121-0/+12
* Add support for inference on threading.LockLaura Médioni2015-12-211-0/+5
* Add changelog entry for 8715eaClaudiu Popa2015-12-211-0/+3
* The slots() method conflates all the slots from the ancestors into a list of ...Claudiu Popa2015-12-181-0/+7
* 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