| Commit message (Expand) | Author | Age | Files | Lines |
* | Mark __init_subclass__ as classmethod (#388)2.0.experimental2.0 | Ćukasz Rogalski | 2017-01-30 | 1 | -0/+3 |
* | Let NotSupportedError be propagated. | Claudiu Popa | 2017-01-26 | 1 | -6/+1 |
* | Implement __getitem__ inference for classes (using the metaclass) | David Euresti | 2017-01-22 | 1 | -0/+25 |
* | Make ClassDefs support keyword arguments. (#384) | Derek Gustafson | 2017-01-22 | 1 | -2/+5 |
* | Skip the current class when deducing its mro. Close #361. | Claudiu Popa | 2016-11-21 | 1 | -0/+2 |
* | Add `returns` into the proper order in FunctionDef._astroid_fields | Claudiu Popa | 2016-07-27 | 1 | -1/+1 |
* | Even more granular copyrights (thanks to copyrite) | Claudiu Popa | 2016-07-22 | 1 | -2/+5 |
* | Keep a consistent copyright notice across the board. | Claudiu Popa | 2016-07-19 | 1 | -0/+2 |
* | Give priority to local special attributes for classes and modules | Claudiu Popa | 2016-06-05 | 1 | -4/+23 |
* | Convert all files to new license header | Ceridwen | 2016-05-17 | 1 | -17/+3 |
* | Build a dummy module object for namespace directories and add a test for mult... | Claudiu Popa | 2016-05-09 | 1 | -0/+2 |
* | Don't crash when a decorated method has the same name as the decorator, which... | Claudiu Popa | 2016-04-30 | 1 | -1/+9 |
* | Calling lambda methods (defined at class level) can be understood. | Claudiu Popa | 2016-04-26 | 1 | -1/+6 |
* | decoratornames() does not leak InferenceError anymore. | Claudiu Popa | 2016-03-11 | 1 | -2/+5 |
* | Try to compute descriptors only for objects with the source code available. | Claudiu Popa | 2016-03-01 | 1 | -5/+12 |
* | Unbound methods don't occur anymore on Python 3 | Claudiu Popa | 2016-02-25 | 1 | -3/+8 |
* | Introduce a special attributes model | Claudiu Popa | 2016-02-23 | 1 | -62/+17 |
* | Add a __repr__ for CallSite. Close #209 | Claudiu Popa | 2016-02-19 | 1 | -0/+8 |
* | imported_names() got replaced by public_names() | Claudiu Popa | 2016-02-18 | 1 | -51/+3 |
* | Changed the way how parameters are being built | Claudiu Popa | 2016-02-13 | 1 | -13/+17 |
* | Use keys and values as separate arguments for nodes.Dict | Claudiu Popa | 2016-01-04 | 1 | -2/+5 |
* | Lambda is no longer at the top of the FunctionDef. | Claudiu Popa | 2016-01-03 | 1 | -51/+59 |
* | Remove the old aliases for ass_type / file_bytes / file and nodes. | Claudiu Popa | 2016-01-03 | 1 | -46/+0 |
* | file_stream is no more, using .stream() is the recommended way to obtain a mo... | Claudiu Popa | 2016-01-02 | 1 | -15/+0 |
* | Move mixins into tree.base. | Claudiu Popa | 2016-01-02 | 1 | -3/+2 |
* | Move qname() definition into a separate mixin | Claudiu Popa | 2015-12-30 | 1 | -3/+13 |
* | Move lookup specific bits into interpreter.lookup | Claudiu Popa | 2015-12-29 | 1 | -280/+11 |
* | We're raising TypeError in 2.0 for old-style class operations, not NotImpleme... | Claudiu Popa | 2015-12-29 | 1 | -1/+1 |
* | Trigger NotImplementedError with slots message before mro gets executed (will... | Claudiu Popa | 2015-12-29 | 1 | -0/+4 |
* | The slots() method conflates all the slots from the ancestors into a list of ... | Claudiu Popa | 2015-12-29 | 1 | -10/+30 |
* | relative_to_absolute_name will now raise TooManyLevelsError when a relative i... | Claudiu Popa | 2015-12-06 | 1 | -0/+4 |
* | AstroidBuildingException is now AstroidBuildingError, the former being remove... | Claudiu Popa | 2015-12-06 | 1 | -3/+3 |
* | Add two new exceptions, AstroidImportError and AstroidSyntaxError. | Claudiu Popa | 2015-12-06 | 1 | -1/+1 |
* | assigned_stmts methods have the same signature from now on. | Claudiu Popa | 2015-12-05 | 1 | -0/+1 |
* | Clean up debug statements and fix trivial test failures | Ceridwen | 2015-11-22 | 1 | -1/+1 |
* | Clean up caching of and references to builtins mock AST | Ceridwen | 2015-11-21 | 1 | -1/+1 |
* | Fix the use of __all__ in wildcard_import_names for transformed modules | Ceridwen | 2015-11-21 | 1 | -1/+6 |
* | Fix bugs introduced during modular-locals merge | Ceridwen | 2015-11-19 | 1 | -1/+1 |
* | Make classes, modules, and functions available under both intrinsic and extri... | Ceridwen | 2015-11-18 | 1 | -2/+2 |
* | Replace const_factory with Const call in CallSite.infer_arguments | Ceridwen | 2015-11-18 | 1 | -1/+1 |
* | Fix TypeErrors for old-style classes for __slots__ and MROs | Ceridwen | 2015-11-17 | 1 | -1/+1 |
* | Fixed bugs introduced by merging modular-locals into 2.0. | Ceridwen | 2015-11-17 | 1 | -13/+21 |
* | Remove debugging statement | Ceridwen | 2015-11-16 | 1 | -1/+0 |
* | Merge modular-locals into 2.0 | Ceridwen | 2015-11-16 | 1 | -112/+365 |
* | Merge structured exceptions into 2.0 | Claudiu Popa | 2015-11-13 | 1 | -102/+145 |
* | Rename Uninferable and instantiate_class, fix broken tests, improve | Ceridwen | 2015-11-06 | 1 | -31/+31 |
* | Move LookupMixin into mixins, since we can it doesn't need to depend on Name ... | Claudiu Popa | 2015-11-07 | 1 | -1/+1 |
* | Add Function.called_with, which returns a CallSite with the given arguments. | Claudiu Popa | 2015-11-04 | 1 | -0/+219 |
* | Merge runtime namespace with interpreter namespace. | Claudiu Popa | 2015-11-01 | 1 | -5/+5 |
* | Move the implementation of scopes into interpreter.scopes, which makes it mor... | Claudiu Popa | 2015-11-01 | 1 | -6/+0 |