summaryrefslogtreecommitdiff
path: root/checkers
Commit message (Expand)AuthorAgeFilesLines
* Don't emit 'pointless-string-statement' for attribute docstrings. Closes issu...cpopa2014-07-241-3/+15
* Restore compatibility with Python 2.6.cpopa2014-07-241-6/+12
* fix issue #203, we should not let ImportError propagate from the import checkerSylvain Th?nault2014-07-231-1/+4
* import modutils from astroid, it has been backported thereSylvain Th?nault2014-07-231-1/+1
* Merged in PCManticore/pylint/metaclass_undefined (pull request #111)Claudiu Popa2014-07-233-7/+11
|\
| * Merged logilab/pylint into defaultClaudiu Popa2014-07-232-7/+5
| |\
| | * stop having ASTWalker as BaseChecker base class, it's not used anymore (and f...Sylvain Th?nault2014-07-231-3/+1
| | * Don't use set comprehension.cpopa2014-07-231-4/+4
| * | Don't emit 'unused-variable' when assigning to a nonlocal. Closes issue #275.cpopa2014-07-231-0/+6
| |/
* | Remove check_messages, so that leave_module can be called if 'undefined-vari...cpopa2014-07-231-1/+0
* | Merge with default.cpopa2014-07-227-63/+672
|\ \ | |/
| * Definition order is considered for classes, function arguments and annotation...cpopa2014-07-211-1/+66
| * Fix an 'unused-variable' false positive, where the variable is assigned throu...cpopa2014-07-171-1/+41
| * Don't emit 'no-name-in-module' for ignored modules. Closes issue #223.cpopa2014-07-121-1/+7
| * Add 'assigning-non-slot' warning, which detects assignments to attributes not...cpopa2014-07-101-1/+32
| * Fix a false positive regarding W0511. Closes issue #149.Alexandru Coman2014-07-091-2/+2
| * Code refactoring.Alexandru Coman2014-07-091-7/+6
| * Fixing Issue #149 (W0511 false positive)Alexandru Coman2014-07-091-14/+18
| * Merge upstream default into list-index-checkerDavid Shea2014-07-081-0/+128
| |\
| | * Move the sequence_types set to the global levelDavid Shea2014-07-081-3/+4
| | * Skip the check for whether node is a Slice in visit_slice.David Shea2014-07-081-3/+0
| | * Fix a typo in a commentDavid Shea2014-07-081-1/+1
| | * Skip sequence index checks on types that do not resolve to an Instance or aDavid Shea2014-07-081-1/+1
| | * Correct problems with checking extended slice syntax.David Shea2014-07-071-2/+14
| | * Correct the sequence index check for set and delete operations.David Shea2014-07-071-11/+22
| | * Correct the use of root()David Shea2014-07-071-1/+1
| | * Clean up some stylistic issues in the sequence and slice index type checks.David Shea2014-07-071-14/+9
| | * Expand the description for invalid-sequence-index to match the check.David Shea2014-07-071-1/+2
| | * Remove the types import since it is no longer usedDavid Shea2014-07-061-1/+0
| | * Merge upstream default into list-index-checkerDavid Shea2014-07-061-0/+112
| | |\
| | | * Check for invalid indices used with subclasses of sequence types.David Shea2014-07-061-4/+25
| | | * Expand and correct the types used in the index and slice checks.David Shea2014-07-061-22/+40
| | | * Add a check for invalid types used as slice indices.David Shea2014-07-031-0/+39
| | | * Add tests for list index type checking and clean up the conditionalDavid Shea2014-07-031-10/+21
| | | * Emit an error when a list index is a non-integer typeDavid Shea2014-07-011-0/+23
| * | | Fix a false positive with unbalanced iterable unpacking, when encountering st...cpopa2014-07-081-4/+8
| |/ /
| * | Emit 'not-callable' when calling properties. Closes issue #268.cpopa2014-07-021-3/+72
| |/
| * Remove trailing whitespace.cpopa2014-07-011-1/+1
| * Emit attribute-defined-outside-init for all cases, not just for the last assi...cpopa2014-07-011-21/+23
| * Issue broad-except and bare-except even if the number of except handlers is d...cpopa2014-06-271-4/+4
| * Reorder a check for better coherence, fix a couple of docstrings.cpopa2014-06-261-9/+8
| * Separate the good cases from the bad cases, improve the messages.cpopa2014-06-261-17/+22
| * No need for a deque here.cpopa2014-06-231-8/+3
| * Merge with default.cpopa2014-06-232-1/+9
| |\
| | * Don't warn with 'bad-format-character' when encountering the 'a' format on Py...cpopa2014-06-161-1/+7
| | * Skip uninferable nodes when looking for bad exception contextscpopa2014-06-151-0/+2
| * | Skip nodes with starargs or kwargs for now.cpopa2014-06-161-0/+4
| * | Filter out non-const nodes.cpopa2014-06-151-0/+2
| * | Fix a potential crash for accessors like "{0.missing}".cpopa2014-06-151-1/+1
| * | Filter YES arguments.cpopa2014-06-151-2/+2