summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Rename F0401 (import-error) to E0401 as it is not a fatal pylint errorrename-F0401-to-E0401Noam Yorav-Raphael2015-06-294-8/+8
* Add tests for understanding constructors after a type() call.Claudiu Popa2015-06-272-1/+19
* Move the property into a private function and call it in Checker.open.Claudiu Popa2015-06-261-10/+12
* Add tests for checking that calling constructors from class methods with inva...Claudiu Popa2015-06-262-0/+24
* Remove deque specialized code, since it is already handled by astroid.Claudiu Popa2015-06-261-5/+0
* Verify explicitly that a class is not a known exception class.Claudiu Popa2015-06-263-3/+34
* Add a new error, 'star-needs-assignment-target'.Claudiu Popa2015-06-265-2/+28
* Add a new error for the Python 3 porting checker, `import-star-module-level`.Claudiu Popa2015-06-253-1/+24
* Detect a couple of objects which can't be base classes (bool, slice, range an...Claudiu Popa2015-06-254-2/+32
* Add a new error, 'invalid-star-assignment-target'.Claudiu Popa2015-06-255-1/+22
* Add a new error, 'too-many-star-expressions'.Claudiu Popa2015-06-255-0/+22
* yield-outside-func is also emitted for `yield from`.Claudiu Popa2015-06-255-2/+18
* Add tests for checking the ability to understand one-argument type builtin.Claudiu Popa2015-06-242-2/+8
* Disable not-callable because NotImplemented is inferred correctly now (and we...Claudiu Popa2015-06-231-1/+1
* Add the new __matmul__ and __rmatmul__ dunder methods to the list of known sp...Claudiu Popa2015-06-211-1/+2
* Move the code which checks undefined-all-variable into a new private function.Claudiu Popa2015-06-201-40/+47
* Don't emit undefined-all-variable for nodes which can't be inferred (which re...Claudiu Popa2015-06-206-10/+14
* Don't emit not-context-manager for instances with unknown bases.Claudiu Popa2015-06-202-1/+13
* pylint.checkers.utils.excepts_import_error was removed.Claudiu Popa2015-06-202-11/+3
* Fix the broken tests, since locals_types and instance_attr_types were expecte...Claudiu Popa2015-06-201-6/+8
* Make sure that every frame used by pyreverse.inspect has a locals_type attributeClaudiu Popa2015-06-201-15/+18
* Improve the readability of a function by using a defaultdict(set) instead of ...Claudiu Popa2015-06-201-10/+4
* astroid.utils.LocalsVisitor was moved to pylint.pyreverse.LocalsVisitor.Claudiu Popa2015-06-174-3/+83
* Replace the license with what is already used in the project.Claudiu Popa2015-06-171-14/+13
* Import astroid inspector to pyreverse.inspector.Claudiu Popa2015-06-177-4/+354
* Emit no-member checks for nodes found in an ExceptHandler branch, without exc...Claudiu Popa2015-06-173-1/+25
* Revert partially the previous commit: let astroid return functions, not Bound...Claudiu Popa2015-06-151-7/+1
* Fix a false positive regarding staticmethods: they don't have an implicit arg...Claudiu Popa2015-06-155-4/+30
* Remove trailing whitespace.Claudiu Popa2015-06-141-3/+3
* arguments-differ understand differences between various type of functions.Claudiu Popa2015-06-145-44/+171
* Add tests for the previous changeset.Claudiu Popa2015-06-132-0/+65
* Add a new error, 'invalid-unary-type-operand'.Claudiu Popa2015-06-132-0/+19
* Remove trailing whitespace.Claudiu Popa2015-06-101-1/+1
* Support using-constant-test for comprehensions.Claudiu Popa2015-06-083-2/+33
* Merge.Claudiu Popa2015-06-014-7/+74
|\
| * Add tests for checking the new understanding of super calls.Claudiu Popa2015-06-012-1/+36
| * Don't fail with a traceback when checking if a member exists in a super call ...Claudiu Popa2015-06-012-3/+14
| * Don't emit no-member on supers with unknown bases in the MRO.Claudiu Popa2015-05-293-7/+28
* | Add ChangeLog entry, new test and documentation for searching .pylintrc in th...Claudiu Popa2015-06-013-1/+8
* | Merged in jakirkham/pylint (pull request #253)Claudiu Popa2015-06-011-0/+2
|\ \ | |/ |/|
| * pylint/config.py: Check for `.pylintrc`, as well.John Kirkham2015-05-271-0/+2
* | Remove unused imports.Claudiu Popa2015-05-281-1/+1
* | Pylint understand super calls.Claudiu Popa2015-05-285-3/+8
* | Don't emit 'raising-non-exception' when the exception has unknown bases.Claudiu Popa2015-05-274-11/+18
* | `but` from logging-format-interpolation is changed to `and`Claudiu Popa2015-05-252-5/+5
* | Pass the invalid __all__ element in a tuple to add_message method, in order t...Claudiu Popa2015-05-253-6/+8
|/
* Remove trailing whitespace.Claudiu Popa2015-05-241-1/+1
* Add functional test for the func_tokenize_error, handling Jython as well.Claudiu Popa2015-05-247-1/+13
* Make test_no_context_file test compatible with Jython.Claudiu Popa2015-05-241-3/+7
* Fix the encoding marker which is unrecognised on Jython.Claudiu Popa2015-05-241-1/+1