summaryrefslogtreecommitdiff
path: root/astroid/tests
Commit message (Expand)AuthorAgeFilesLines
* Fix SyntaxError on Python 2 for print functionuse_print_functionJohn Vandenberg2015-10-191-0/+1
* Remove doctype and future imports which aren't useful.Claudiu Popa2015-10-111-2/+0
* Move decorators from bases to decorators module.Claudiu Popa2015-10-111-3/+4
* Remove trailing whitespace.Claudiu Popa2015-10-091-1/+1
* The functional form of Enum returns a class, not an instance.Claudiu Popa2015-10-091-0/+12
* Support PEP 448 unpackings in dict calls.Claudiu Popa2015-10-081-0/+26
* Make duplicated_kwargs a public API.Claudiu Popa2015-10-081-0/+5
* Fix pylint warnings.Claudiu Popa2015-10-071-12/+11
* Change arguments.ArgumentsInference to arguments.CallSiteClaudiu Popa2015-10-071-0/+87
* Remove trailing whitespace.Claudiu Popa2015-10-061-1/+0
* Add support for looking up into DictUnpack's value in Dict.getitemClaudiu Popa2015-10-061-0/+9
* Fix pylint errors.Claudiu Popa2015-10-061-1/+1
* Add a new node, DictUnpack, for representing the unpacking of a dict using PE...Claudiu Popa2015-10-061-0/+16
* Move objects.Slice back into nodes.SliceClaudiu Popa2015-10-031-1/+1
* Don't wrap instance's arguments into a Const, instead let the original index ...Claudiu Popa2015-10-031-0/+12
* Add a test for issue #188, which was triggered because the transforms weren't...Claudiu Popa2015-10-031-0/+25
* Fix a crash which occurred when inferring unary operands which yielded object...Claudiu Popa2015-10-031-0/+8
* Skip objects which aren't callable when inferring an instance's call result.Claudiu Popa2015-10-031-0/+16
* Ignore non-callables when looking for special method implementations of bool ...Claudiu Popa2015-10-031-1/+20
* Import test from pylint regarding a crash that used to occur a long time ago.Claudiu Popa2015-09-301-0/+10
* Import test for pylint regarding context inference in relation with factory m...Claudiu Popa2015-09-291-0/+19
* Fix a crash which occurred when extra_decorators was considering non-class le...Claudiu Popa2015-09-291-0/+23
* Add test for issue #183.Claudiu Popa2015-09-271-0/+9
* Remove trailing whitespace.Claudiu Popa2015-09-261-1/+1
* Add a separate Slice object, which is used when inferring the slice builtin callClaudiu Popa2015-09-261-0/+28
* Add numpy transform tip for understanding numpy's calculation of __all__.Claudiu Popa2015-09-261-1/+1
* Fix indentation to make pylint happyyy.Claudiu Popa2015-09-251-11/+11
* Make pylint happyy.Claudiu Popa2015-09-252-21/+20
* Fix a crash when inferring subscripts which returned the same object all the ...Claudiu Popa2015-09-251-1/+14
* Add brain tip for understanding numpy.core's mutation of the __all__ variableClaudiu Popa2015-09-241-0/+19
* Allow only classes to be looked up in the metaclass chain for searching for a...Claudiu Popa2015-09-221-0/+27
* Final draft of state printing after mergeCeridwen2015-09-131-3/+4
|\
| * Final draft of improved state printingCeridwen2015-09-131-3/+4
* | Fix trailing whitespaces and add the missing code that wasn't added in the pr...Claudiu Popa2015-09-112-20/+21
* | Understand the `slice` builtin. Closes issue #184.Claudiu Popa2015-09-111-0/+32
* | Improve the understanding of argumentsClaudiu Popa2015-09-091-0/+211
* | Second pass of the Python 3.5 support: adding Async nodes.Claudiu Popa2015-09-071-0/+46
* | First pass of the Python 3.5 support.Claudiu Popa2015-09-071-2/+0
|/
* Don't use AsStringRegexpPredicate for detecting functional Enums.Claudiu Popa2015-09-051-0/+12
* Add support for understanding class creation using `type.__new__(mcs, name, b...Claudiu Popa2015-09-021-0/+117
* Merged in renezhang/astroid_metaclass_loop (pull request #85)Claudiu Popa2015-08-261-0/+18
|\
| * Fix infinite loop in metaclass inferenceRene Zhang2015-08-201-0/+18
* | Fix pylint issues.Claudiu Popa2015-08-252-20/+20
* | Emit a warning when an old AST name is used in an isinstance call.Claudiu Popa2015-08-252-11/+24
* | Merge PR #79Claudiu Popa2015-08-221-0/+14
|\ \
| * | Fix unknown getattr and igetattr methodsRene Zhang2015-08-201-0/+14
| |/
* | Add deprecation warnings testsCeridwen2015-08-222-4/+45
* | Remove debug statementsCeridwen2015-08-212-4/+0
* | Last merge (hopefully) and all bugs fixed but oneCeridwen2015-08-2113-520/+620
|\ \ | |/ |/|
| * Add tests for aliasesCeridwen2015-08-214-5/+109