| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename F0401 (import-error) to E0401 as it is not a fatal pylint errorrename-F0401-to-E0401 | Noam Yorav-Raphael | 2015-06-29 | 1 | -3/+4 |
* | Move the property into a private function and call it in Checker.open. | Claudiu Popa | 2015-06-26 | 1 | -10/+12 |
* | Remove deque specialized code, since it is already handled by astroid. | Claudiu Popa | 2015-06-26 | 1 | -5/+0 |
* | Verify explicitly that a class is not a known exception class. | Claudiu Popa | 2015-06-26 | 1 | -2/+16 |
* | Add a new error, 'star-needs-assignment-target'. | Claudiu Popa | 2015-06-26 | 1 | -2/+17 |
* | Add a new error for the Python 3 porting checker, `import-star-module-level`. | Claudiu Popa | 2015-06-25 | 1 | -1/+9 |
* | Detect a couple of objects which can't be base classes (bool, slice, range an... | Claudiu Popa | 2015-06-25 | 1 | -1/+8 |
* | Add a new error, 'invalid-star-assignment-target'. | Claudiu Popa | 2015-06-25 | 1 | -1/+11 |
* | Add a new error, 'too-many-star-expressions'. | Claudiu Popa | 2015-06-25 | 1 | -0/+11 |
* | yield-outside-func is also emitted for `yield from`. | Claudiu Popa | 2015-06-25 | 1 | -2/+9 |
* | Add the new __matmul__ and __rmatmul__ dunder methods to the list of known sp... | Claudiu Popa | 2015-06-21 | 1 | -1/+2 |
* | Move the code which checks undefined-all-variable into a new private function. | Claudiu Popa | 2015-06-20 | 1 | -40/+47 |
* | Don't emit undefined-all-variable for nodes which can't be inferred (which re... | Claudiu Popa | 2015-06-20 | 1 | -0/+2 |
* | Don't emit not-context-manager for instances with unknown bases. | Claudiu Popa | 2015-06-20 | 1 | -0/+5 |
* | pylint.checkers.utils.excepts_import_error was removed. | Claudiu Popa | 2015-06-20 | 1 | -11/+0 |
* | Emit no-member checks for nodes found in an ExceptHandler branch, without exc... | Claudiu Popa | 2015-06-17 | 1 | -1/+2 |
* | Revert partially the previous commit: let astroid return functions, not Bound... | Claudiu Popa | 2015-06-15 | 1 | -7/+1 |
* | Fix a false positive regarding staticmethods: they don't have an implicit arg... | Claudiu Popa | 2015-06-15 | 2 | -3/+8 |
* | Remove trailing whitespace. | Claudiu Popa | 2015-06-14 | 1 | -3/+3 |
* | arguments-differ understand differences between various type of functions. | Claudiu Popa | 2015-06-14 | 1 | -6/+32 |
* | Add a new error, 'invalid-unary-type-operand'. | Claudiu Popa | 2015-06-13 | 1 | -0/+13 |
* | Remove trailing whitespace. | Claudiu Popa | 2015-06-10 | 1 | -1/+1 |
* | Support using-constant-test for comprehensions. | Claudiu Popa | 2015-06-08 | 1 | -0/+6 |
* | Don't fail with a traceback when checking if a member exists in a super call ... | Claudiu Popa | 2015-06-01 | 1 | -3/+7 |
* | Don't emit no-member on supers with unknown bases in the MRO. | Claudiu Popa | 2015-05-29 | 1 | -2/+13 |
* | Remove unused imports. | Claudiu Popa | 2015-05-28 | 1 | -1/+1 |
* | Pylint understand super calls. | Claudiu Popa | 2015-05-28 | 1 | -0/+3 |
* | Don't emit 'raising-non-exception' when the exception has unknown bases. | Claudiu Popa | 2015-05-27 | 1 | -8/+3 |
* | `but` from logging-format-interpolation is changed to `and` | Claudiu Popa | 2015-05-25 | 1 | -1/+1 |
* | Pass the invalid __all__ element in a tuple to add_message method, in order t... | Claudiu Popa | 2015-05-25 | 1 | -2/+2 |
* | Remove trailing whitespace. | Claudiu Popa | 2015-05-24 | 1 | -1/+1 |
* | Handle format-combined-specification explicitly on Jython, where parsing such... | Claudiu Popa | 2015-05-24 | 1 | -3/+12 |
* | Add a new warning, 'using-constant-test'. | Claudiu Popa | 2015-05-23 | 1 | -0/+40 |
* | Don't emit undefined-variable if the node is guarded by a NameError, Exceptio... | Claudiu Popa | 2015-05-19 | 1 | -2/+5 |
* | Fix some typos. | Claudiu Popa | 2015-05-18 | 1 | -2/+2 |
* | Remove zope specific members from generated-members. | Claudiu Popa | 2015-05-18 | 1 | -1/+1 |
* | Remove unused import. | Claudiu Popa | 2015-05-17 | 1 | -1/+0 |
* | Don't emit no-name-in-module for nodes protected by an except clause which ha... | Claudiu Popa | 2015-05-17 | 1 | -3/+3 |
* | Don't emit import-error for nodes protected by an except clause which handles... | Claudiu Popa | 2015-05-17 | 1 | -2/+2 |
* | Refactor exception catching blocks into a new function, node_ignores_exceptio... | Claudiu Popa | 2015-05-17 | 2 | -13/+24 |
* | Don't emit no-member for nodes protected by AttributeError, Exception or bare... | Claudiu Popa | 2015-05-17 | 1 | -3/+19 |
* | error_of_type can support multiple exceptions for the error_type parameter. | Claudiu Popa | 2015-05-17 | 1 | -3/+10 |
* | Add a new function, error_of_type, which verifies that an exception handler i... | Claudiu Popa | 2015-05-16 | 2 | -7/+16 |
* | Fix some pylint warnings over pylint's codebase. | Claudiu Popa | 2015-05-16 | 2 | -5/+5 |
* | Use the map version from six.moves. | Claudiu Popa | 2015-05-16 | 3 | -2/+2 |
* | Disable bad-builtin for using a map. | Claudiu Popa | 2015-05-16 | 1 | -0/+1 |
* | Don't emit no-name-in-module if the import is guarded by an ImportError handler. | Claudiu Popa | 2015-05-16 | 3 | -11/+22 |
* | Remove trailing whitespaces. | Claudiu Popa | 2015-05-14 | 2 | -5/+5 |
* | Remove 'bad-context-manager' due to the inclusion of 'unexpected-special-meth... | Claudiu Popa | 2015-05-14 | 1 | -19/+2 |
* | Add a new warning 'unexpected-special-method-signature'. | Claudiu Popa | 2015-05-14 | 2 | -36/+106 |