summaryrefslogtreecommitdiff
path: root/pylint/checkers
Commit message (Expand)AuthorAgeFilesLines
* Rename F0401 (import-error) to E0401 as it is not a fatal pylint errorrename-F0401-to-E0401Noam Yorav-Raphael2015-06-291-3/+4
* Move the property into a private function and call it in Checker.open.Claudiu Popa2015-06-261-10/+12
* 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-261-2/+16
* Add a new error, 'star-needs-assignment-target'.Claudiu Popa2015-06-261-2/+17
* Add a new error for the Python 3 porting checker, `import-star-module-level`.Claudiu Popa2015-06-251-1/+9
* Detect a couple of objects which can't be base classes (bool, slice, range an...Claudiu Popa2015-06-251-1/+8
* Add a new error, 'invalid-star-assignment-target'.Claudiu Popa2015-06-251-1/+11
* Add a new error, 'too-many-star-expressions'.Claudiu Popa2015-06-251-0/+11
* yield-outside-func is also emitted for `yield from`.Claudiu Popa2015-06-251-2/+9
* 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-201-0/+2
* Don't emit not-context-manager for instances with unknown bases.Claudiu Popa2015-06-201-0/+5
* pylint.checkers.utils.excepts_import_error was removed.Claudiu Popa2015-06-201-11/+0
* Emit no-member checks for nodes found in an ExceptHandler branch, without exc...Claudiu Popa2015-06-171-1/+2
* 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-152-3/+8
* Remove trailing whitespace.Claudiu Popa2015-06-141-3/+3
* arguments-differ understand differences between various type of functions.Claudiu Popa2015-06-141-6/+32
* Add a new error, 'invalid-unary-type-operand'.Claudiu Popa2015-06-131-0/+13
* Remove trailing whitespace.Claudiu Popa2015-06-101-1/+1
* Support using-constant-test for comprehensions.Claudiu Popa2015-06-081-0/+6
* Don't fail with a traceback when checking if a member exists in a super call ...Claudiu Popa2015-06-011-3/+7
* Don't emit no-member on supers with unknown bases in the MRO.Claudiu Popa2015-05-291-2/+13
* Remove unused imports.Claudiu Popa2015-05-281-1/+1
* Pylint understand super calls.Claudiu Popa2015-05-281-0/+3
* Don't emit 'raising-non-exception' when the exception has unknown bases.Claudiu Popa2015-05-271-8/+3
* `but` from logging-format-interpolation is changed to `and`Claudiu Popa2015-05-251-1/+1
* Pass the invalid __all__ element in a tuple to add_message method, in order t...Claudiu Popa2015-05-251-2/+2
* Remove trailing whitespace.Claudiu Popa2015-05-241-1/+1
* Handle format-combined-specification explicitly on Jython, where parsing such...Claudiu Popa2015-05-241-3/+12
* Add a new warning, 'using-constant-test'.Claudiu Popa2015-05-231-0/+40
* Don't emit undefined-variable if the node is guarded by a NameError, Exceptio...Claudiu Popa2015-05-191-2/+5
* Fix some typos.Claudiu Popa2015-05-181-2/+2
* Remove zope specific members from generated-members.Claudiu Popa2015-05-181-1/+1
* Remove unused import.Claudiu Popa2015-05-171-1/+0
* Don't emit no-name-in-module for nodes protected by an except clause which ha...Claudiu Popa2015-05-171-3/+3
* Don't emit import-error for nodes protected by an except clause which handles...Claudiu Popa2015-05-171-2/+2
* Refactor exception catching blocks into a new function, node_ignores_exceptio...Claudiu Popa2015-05-172-13/+24
* Don't emit no-member for nodes protected by AttributeError, Exception or bare...Claudiu Popa2015-05-171-3/+19
* error_of_type can support multiple exceptions for the error_type parameter.Claudiu Popa2015-05-171-3/+10
* Add a new function, error_of_type, which verifies that an exception handler i...Claudiu Popa2015-05-162-7/+16
* Fix some pylint warnings over pylint's codebase.Claudiu Popa2015-05-162-5/+5
* Use the map version from six.moves.Claudiu Popa2015-05-163-2/+2
* Disable bad-builtin for using a map.Claudiu Popa2015-05-161-0/+1
* Don't emit no-name-in-module if the import is guarded by an ImportError handler.Claudiu Popa2015-05-163-11/+22
* Remove trailing whitespaces.Claudiu Popa2015-05-142-5/+5
* Remove 'bad-context-manager' due to the inclusion of 'unexpected-special-meth...Claudiu Popa2015-05-141-19/+2
* Add a new warning 'unexpected-special-method-signature'.Claudiu Popa2015-05-142-36/+106