summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Ignore exceptions raised by gi.require_versionpygobject-require_versionDavid Shea2015-07-081-2/+6
* Duplicate calls to gi.require_version.David Shea2015-07-081-2/+30
* Understand metaclasses added with six.add_metaclass decorator. Closes issue #...Claudiu Popa2015-07-073-1/+54
* Test Super.pytype, Super.display_type and Super.nameClaudiu Popa2015-07-071-0/+11
* Fix the body of namedtuple._replace: return the current self and don't actual...Claudiu Popa2015-07-062-5/+4
* Move pyreverse specific modules and functionality back into pyreverseClaudiu Popa2015-07-036-212/+11
* Infer the unary method retrieved from classes.Claudiu Popa2015-07-032-2/+16
* Add new property name in the list of known property-like objects.Claudiu Popa2015-07-031-1/+3
* Add __enter__ and __exit__ for subprocess.Popen.Claudiu Popa2015-07-031-36/+46
* Fix pylint warnings.Claudiu Popa2015-07-021-3/+3
* Add ChangeLog entry for the last commit.Claudiu Popa2015-07-021-0/+2
* Update modutils.py from logilab.common and add support for namespace packagesClaudiu Popa2015-07-022-14/+31
* Add support for inferring methods masquerading as others for the binop protoc...Claudiu Popa2015-07-022-1/+16
* Fix the name of the __pow__ protocol.Claudiu Popa2015-07-011-1/+1
* Remove trailing whitespace.Claudiu Popa2015-07-012-2/+2
* Add support for inferring subscript on instances, which will use __getitem__...Claudiu Popa2015-07-014-3/+64
* Add test for indexing results of tuple and list builtins.Claudiu Popa2015-07-011-1/+3
* Add test for indexing strings.Claudiu Popa2015-07-011-1/+2
* Use six constants for python versions.Claudiu Popa2015-07-011-7/+3
* Add support for indexing bytes on Python 3.Claudiu Popa2015-07-013-0/+16
* Modernize test to use extract_node.Claudiu Popa2015-07-011-18/+11
* Mark a test as an expected failure: not all staticmethod and classmethods are...Claudiu Popa2015-07-011-1/+2
* Add annotation support for function.as_string(). Closes issue #37.Claudiu Popa2015-07-014-9/+35
* Merged in jarradhope/astroid (pull request #73)Claudiu Popa2015-07-012-6/+17
|\
| * add returns annotationjarradhope2015-04-261-2/+5
| * annotations = Nonejarradhope2015-04-261-1/+3
| * Merged logilab/astroid into defaultJarrad Hope2015-04-263-1/+30
| |\
| * | add annotations to as_string method of Argumentsjarradhope2015-04-261-4/+10
* | | Pin dependency of logilab.common to 0.63.2 for now.Claudiu Popa2015-07-011-1/+1
* | | Star unpacking in assignments returns properly a list, not the individual com...Claudiu Popa2015-07-013-12/+21
* | | Remove trailing whitespace.Claudiu Popa2015-06-301-1/+1
* | | Add support for multiplication of tuples and lists with instances which provi...Claudiu Popa2015-06-303-6/+59
* | | Transform lambdas with a self argument at the class level to bound methods.Claudiu Popa2015-06-303-0/+31
* | | Add a couple of pragma disables for some false positives.Claudiu Popa2015-06-302-0/+3
* | | Fix the signature of __add__.Claudiu Popa2015-06-281-2/+2
* | | Emit YES for all string operations operands, it will be implemented later.Claudiu Popa2015-06-281-3/+2
* | | Return NotImplemented for inferring binary operations between consts and othe...Claudiu Popa2015-06-281-1/+3
* | | Ignore string interpolation with tuples and dictionaries for now.Claudiu Popa2015-06-282-0/+16
* | | Add support for retrieving TypeErrors for binary arithmetic operations and au...Claudiu Popa2015-06-285-19/+175
* | | Move UnaryOp code to be closer to BinaryOp.Claudiu Popa2015-06-281-56/+57
* | | Improve the inference of binary arithmetic operations (normal and augmented)Claudiu Popa2015-06-275-136/+700
* | | Add helpers.is_supertype and helpers.is_subtype, two functions for checking i...Claudiu Popa2015-06-264-34/+187
* | | Add __reversed__ special method to deques.Claudiu Popa2015-06-261-2/+3
* | | Remove trailing whitespace.Claudiu Popa2015-06-241-1/+1
* | | Understand the one-argument form of the builtin *type*.Claudiu Popa2015-06-243-11/+45
* | | Add astroid.helpers, a module of various useful utilities which don't belong ...Claudiu Popa2015-06-244-1/+275
* | | NotImplemented is detected properly now as being part of the builtins module.Claudiu Popa2015-06-234-1/+17
* | | Remove trailing whitespace and use the correct argument to require_version.Claudiu Popa2015-06-211-2/+2
* | | Add support for Python 3.5's MatMul infix operator. See PEP 465 for more deta...Claudiu Popa2015-06-214-0/+24
* | | Fix a couple of style issues:Claudiu Popa2015-06-211-186/+164