summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Restore the posargs argumentClaudiu Popa2016-06-271-1/+2
* Add coverage configuration, backported from pylint.Claudiu Popa2016-06-275-16/+57
* Add configuration for .github issues.Claudiu Popa2016-06-272-0/+15
* Add more up-to-date package information. Close #330Claudiu Popa2016-06-271-3/+3
* Add runtime virtual classes for DictKeys, DictItems, DictValues and DictInsta...Claudiu Popa2016-06-203-0/+21
* Give priority to local special attributes for classes and modulesClaudiu Popa2016-06-053-6/+43
* Don't restrict building of builtin type's member if they are already in speci...Claudiu Popa2016-06-043-4/+3
* Proper bound and _proxied objects for __subclasses__ and __mro__ pointing to ...Claudiu Popa2016-06-042-2/+36
* Now is_subtype / is_supertype raises an internal exception when a type hierar...Claudiu Popa2016-06-034-18/+38
* Try to canonicalize the lookup paths as well.Claudiu Popa2016-06-011-2/+9
* Split brain_stdlib into multiple modules and finally kill it.Claudiu Popa2016-05-316-231/+276
* Canonicalize file paths in modpath_from_file, this should help when receiving...Claudiu Popa2016-05-311-1/+2
* Add test for not recording assignment locals in ExceptHandlersClaudiu Popa2016-05-252-0/+14
* Fix a crash which occurred when the class of a namedtuple could not be inferred.Claudiu Popa2016-05-203-3/+20
* Convert all files to new license headerCeridwen2016-05-1762-1754/+1121
* Don't look for namespace packages implicitly into functions doing concrete im...Claudiu Popa2016-05-102-35/+26
* Move the test data namespace packages where they belong.Claudiu Popa2016-05-0928-11/+0
* Add Changelog entry for namespace packages.Claudiu Popa2016-05-092-1/+14
* Build a dummy module object for namespace directories and add a test for mult...Claudiu Popa2016-05-099-2/+27
* Implicit namespace package support for modpath_from_file for Python 3.3+.Claudiu Popa2016-05-092-2/+17
* Improve the message.Claudiu Popa2016-05-091-3/+1
* Compute the namespace package path with pkg_resourcesClaudiu Popa2016-05-091-1/+1
* Support namespace packages only for versions with the module spec feature imp...Claudiu Popa2016-05-091-1/+1
* Don't introduce empty values for non-zip importers in path_importer_cache and...Claudiu Popa2016-05-094-2/+13
* Switch to a spec finder protocol for finding files or packagesClaudiu Popa2016-05-094-125/+226
* Add test for old namespace packages protocol.Claudiu Popa2016-05-0925-0/+37
* Don't crash when a decorated method has the same name as the decorator, which...Claudiu Popa2016-04-303-1/+22
* Improve inference with regard redefinition of values in subclassesClaudiu Popa2016-04-263-1/+60
* Calling lambda methods (defined at class level) can be understood.Claudiu Popa2016-04-263-1/+20
* Add brain tip for get_distributionClaudiu Popa2016-04-261-0/+3
* Move pkg_resources tip into their own fileClaudiu Popa2016-04-262-55/+79
* Apply automatically the transforms for the builtin module, since they might n...Claudiu Popa2016-04-251-1/+5
* Don't take in consideration invalid assignments, especially when __slots__ de...Claudiu Popa2016-04-255-1/+142
* Functional form of enums support accessing values through __call__.Claudiu Popa2016-04-133-8/+21
* Understand the `dir` builtin.Claudiu Popa2016-04-053-0/+242
* Apply the strings / bytes patching only when the builtins module gets builtClaudiu Popa2016-03-303-13/+17
* Add brain tips for the functools.lru_cache decorator.Claudiu Popa2016-03-283-0/+102
* Add brain tips for the ssl library.Claudiu Popa2016-03-243-0/+75
* Try to see if the object from the determined module is actually the object we...Claudiu Popa2016-03-191-7/+11
* decoratornames() does not leak InferenceError anymore.Claudiu Popa2016-03-113-2/+22
* Add test for slots and dict.keys.Claudiu Popa2016-03-061-0/+12
* dict.values, dict.keys and dict.items are properly inferredClaudiu Popa2016-03-067-6/+168
* Add missing Python 2 function model attributes.Claudiu Popa2016-03-062-0/+38
* Exceptions have their own object modelClaudiu Popa2016-03-037-2/+100
* Try to compute descriptors only for objects with the source code available.Claudiu Popa2016-03-013-7/+13
* Separate the UnboundMethod from BoundMethodClaudiu Popa2016-02-275-33/+38
* Unbound methods don't occur anymore on Python 3Claudiu Popa2016-02-258-35/+107
* Merge pull request #319 from PyCQA/special_attributesClaudiu Popa2016-02-237-92/+1017
|\
| * Introduce a special attributes modelClaudiu Popa2016-02-237-92/+1017
|/
* Add a __repr__ for CallSite. Close #209Claudiu Popa2016-02-191-0/+8