| Commit message (Expand) | Author | Age | Files | Lines |
| * | Implement __getitem__ inference for classes (using the metaclass) | David Euresti | 2017-01-22 | 1 | -0/+2 |
| * | Add changelog entry for class keywords | Claudiu Popa | 2017-01-22 | 1 | -0/+5 |
| * | getitem() method accepts nodes now, instead of Python objects. | Claudiu Popa | 2016-12-30 | 1 | -0/+2 |
| * | Add changelog entry for the explicit namespace package support. | Claudiu Popa | 2016-08-24 | 1 | -0/+1 |
| * | Add brain tips for _io.TextIOWrapper's buffer and raw attributes. | Claudiu Popa | 2016-08-22 | 1 | -0/+2 |
| * | Add `returns` into the proper order in FunctionDef._astroid_fields | Claudiu Popa | 2016-07-27 | 1 | -0/+5 |
| * | New function, astroid.extract_node, exported out from astroid.test_utils. | Claudiu Popa | 2016-06-29 | 1 | -0/+2 |
| * | Add test for not recording assignment locals in ExceptHandlers | Claudiu Popa | 2016-05-25 | 1 | -0/+1 |
| * | Fix a crash which occurred when the class of a namedtuple could not be inferred. | Claudiu Popa | 2016-05-20 | 1 | -0/+2 |
| * | Add Changelog entry for namespace packages. | Claudiu Popa | 2016-05-09 | 1 | -1/+12 |
| * | Don't crash when a decorated method has the same name as the decorator, which... | Claudiu Popa | 2016-04-30 | 1 | -0/+3 |
| * | Improve inference with regard redefinition of values in subclasses | Claudiu Popa | 2016-04-26 | 1 | -1/+7 |
| * | Calling lambda methods (defined at class level) can be understood. | Claudiu Popa | 2016-04-26 | 1 | -0/+2 |
| * | Don't take in consideration invalid assignments, especially when __slots__ de... | Claudiu Popa | 2016-04-25 | 1 | -0/+5 |
| * | Functional form of enums support accessing values through __call__. | Claudiu Popa | 2016-04-13 | 1 | -0/+2 |
| * | Understand the `dir` builtin. | Claudiu Popa | 2016-04-05 | 1 | -0/+6 |
| * | Add brain tips for the functools.lru_cache decorator. | Claudiu Popa | 2016-03-28 | 1 | -0/+2 |
| * | Add brain tips for the ssl library. | Claudiu Popa | 2016-03-24 | 1 | -0/+2 |
| * | decoratornames() does not leak InferenceError anymore. | Claudiu Popa | 2016-03-11 | 1 | -0/+2 |
| * | dict.values, dict.keys and dict.items are properly inferred | Claudiu Popa | 2016-03-06 | 1 | -0/+3 |
| * | Exceptions have their own object model | Claudiu Popa | 2016-03-03 | 1 | -0/+11 |
| * | Unbound methods don't occur anymore on Python 3 | Claudiu Popa | 2016-02-25 | 1 | -0/+6 |
| * | Introduce a special attributes model | Claudiu Popa | 2016-02-23 | 1 | -0/+8 |
| * | imported_names() got replaced by public_names() | Claudiu Popa | 2016-02-18 | 1 | -0/+14 |
| * | Changed the way how parameters are being built | Claudiu Popa | 2016-02-13 | 1 | -0/+19 |
| * | NodeNG.nearest was removed. | Claudiu Popa | 2016-01-25 | 1 | -0/+3 |
| * | Fix unpack_infer to fail if results are empty | Dave Baum | 2016-01-15 | 1 | -0/+3 |
| * | Support accessing properties using super(). | Claudiu Popa | 2016-01-15 | 1 | -0/+2 |
| * | Enforce strong updates per frames. | Claudiu Popa | 2016-01-12 | 1 | -0/+13 |
| * | Use keys and values as separate arguments for nodes.Dict | Claudiu Popa | 2016-01-04 | 1 | -1/+4 |
| * | Lambda is no longer at the top of the FunctionDef. | Claudiu Popa | 2016-01-03 | 1 | -0/+6 |
| * | Move mixins into tree.base. | Claudiu Popa | 2016-01-02 | 1 | -0/+2 |
| * | Remove do_import_module and real_name from ImportFrom and Import nodes. | Claudiu Popa | 2016-01-02 | 1 | -0/+11 |
| * | Add support for inference on threading.Lock | Laura Médioni | 2015-12-29 | 1 | -0/+8 |
| * | The slots() method conflates all the slots from the ancestors into a list of ... | Claudiu Popa | 2015-12-29 | 1 | -0/+7 |
| * | Don't forget to give credit to the original author. | Claudiu Popa | 2015-12-29 | 1 | -1/+1 |
| * | Use printf-style formatting in as_string, in order to avoid a potential probl... | Claudiu Popa | 2015-12-29 | 1 | -1/+13 |
| * | Some nodes got a new attribute, 'ctx', which tells in which context the said ... | Claudiu Popa | 2015-12-08 | 1 | -0/+8 |
| * | relative_to_absolute_name will now raise TooManyLevelsError when a relative i... | Claudiu Popa | 2015-12-06 | 1 | -0/+3 |
| * | AstroidBuildingException is now AstroidBuildingError, the former being remove... | Claudiu Popa | 2015-12-06 | 1 | -0/+3 |
| * | Add two new exceptions, AstroidImportError and AstroidSyntaxError. | Claudiu Popa | 2015-12-06 | 1 | -0/+11 |
| * | assigned_stmts methods have the same signature from now on. | Claudiu Popa | 2015-12-05 | 1 | -0/+7 |
| * | Fix a bug in the inference of Starred nodes | Claudiu Popa | 2015-11-11 | 1 | -0/+4 |
| * | .scope() returns the proper scope for Arguments's default values, function an... | Claudiu Popa | 2015-11-10 | 1 | -0/+3 |
| * | Class.getattr('__mro__') returns the actual MRO. | Claudiu Popa | 2015-10-26 | 1 | -0/+3 |
| * | Add support for indexing containers with instances which provides an __index_... | Claudiu Popa | 2015-10-22 | 1 | -0/+3 |
| * | Add a new node, DictUnpack, for representing the unpacking of a dict using PE... | Claudiu Popa | 2015-10-06 | 1 | -0/+9 |
| * | Add brain tip for understanding numpy.core's mutation of the __all__ variable | Claudiu Popa | 2015-09-24 | 1 | -0/+2 |
| * | Understand the `slice` builtin. Closes issue #184. | Claudiu Popa | 2015-09-11 | 1 | -0/+2 |
| * | Add support for understanding class creation using `type.__new__(mcs, name, b... | Claudiu Popa | 2015-09-02 | 1 | -0/+7 |