summaryrefslogtreecommitdiff
path: root/pylint/test/functional
Commit message (Expand)AuthorAgeFilesLines
* Added a new warning, 'unsupported-assignment-operation'Claudiu Popa2015-11-262-0/+111
* Ignore multiple comparisons in unneeded-not ruleLaura M?dioni2015-11-251-0/+4
* Fix some docstrings and the Python 3 testsClaudiu Popa2015-11-253-4/+4
* Fix new import related errors in pylint's codebase.Claudiu Popa2015-11-254-5/+3
* slightly change wrong-import-position message and add forgotten functional testLaura M?dioni2015-11-122-0/+24
* Check imports are located at the top of the module (right after docstring and...Laura M?dioni2015-11-1015-15/+15
* Check imports are ordered (standard, 3rd party, local) and grouped by packageLaura M?dioni2015-11-0910-6/+46
* Add is to the checked operatorsLaura M?dioni2015-11-242-0/+3
* Fix crash with 'in' operator on unneeded-notLaura M?dioni2015-10-292-1/+6
* improve unneeded-not messagesLaura M?dioni2015-10-271-12/+12
* Check for nots too many in comparison expressionsLaura M?dioni2015-10-263-1/+54
* Ignore missing docstrings for decorated attribute setters and deletersMichael Kefeder2015-11-191-0/+19
* Added a new refactoring warning, 'simplifiable-if-statement'Claudiu Popa2015-11-212-0/+124
* check the number of boolean expressions in if statement is reasonnableLaura M?dioni2015-10-292-0/+24
* Use safe inference in unpacking-non-sequence checkerDmitry Pribysh2015-11-094-26/+34
* Reduce number of false positives emitted by non-iterator-returned checkerDmitry Pribysh2015-11-072-13/+17
* Fix the test to work on both Python versions.Claudiu Popa2015-11-041-1/+1
* Add test for deques to `unsubscriptable-object` functional testsDmitry Pribysh2015-11-041-0/+6
* Merged in lmedioni/pylint (pull request #298)Claudiu Popa2015-11-042-0/+97
|\
| * check if the number of nested block in a function or a method isn't too highLaura M?dioni2015-10-302-0/+97
* | Rename 'unsubscriptable-value' message to 'unsubscriptable-object'Dmitry Pribysh2015-11-032-28/+28
* | Add checker for unsubscriptable values used in subscript expression.Dmitry Pribysh2015-11-033-1/+99
|/
* Fix the tests to work on both Python versions.Claudiu Popa2015-10-302-2/+2
* Merged in lmedioni/pylint (pull request #295)Claudiu Popa2015-10-307-4/+81
|\
| * no-static/class-method: enhance the tests and fix the code accordinglyLaura M?dioni2015-10-294-3/+21
| * improve style and fix typos regarding no_class/staticmethod_decoratorLaura M?dioni2015-10-292-2/+2
| * check for static methods declared without a decoratorLaura M?dioni2015-10-293-1/+30
| * check for class methods declared without a decoratorLaura M?dioni2015-10-294-3/+33
* | Add a few functional tests for enhanced unpacking checkerenhance-unpacking-checkerDmitry Pribysh2015-10-292-13/+36
* | Merge heads.Claudiu Popa2015-10-272-0/+44
|\ \
| * | Add a new convention message, 'consider-using-enumerate'Claudiu Popa2015-10-272-0/+44
| |/
* | Make iterable checker skip classes that are inferred to be abstractfix-685Dmitry Pribysh2015-10-274-13/+105
* | Skip not-an-iterable and similar checks for Base/Abstract classesDmitry Pribysh2015-10-271-1/+23
|/
* Use the representation of the context when building the message for misplaced...Claudiu Popa2015-10-262-0/+3
* Don't emit misplaced-comparison-constant for constant tests, such as true == ...Claudiu Popa2015-10-262-10/+4
* Make misplaced-comparison-constant a convention, rather than a warning.Claudiu Popa2015-10-261-3/+3
* Merge heads.Claudiu Popa2015-10-2610-16/+65
|\
| * Explicitely check for const to const comparisonLaura M?dioni2015-10-262-6/+27
| * add a new rule looking for yoda conditionsLaura M?dioni2015-10-1510-16/+44
* | Add test for verifying that __name__ can't be accessed from an instance.Claudiu Popa2015-10-262-0/+7
* | Add test case for issue #559. Closes issue #559.Claudiu Popa2015-10-241-0/+7
* | Don't warn about abstract classes instantiated in their own body. Closes issu...Claudiu Popa2015-10-211-0/+20
* | non-iterator-returned can detect classes with iterator-metaclasses.Claudiu Popa2015-10-202-7/+43
* | Add checker for membership rules and testsmembership-test-checkerDmitry Pribysh2015-10-198-0/+176
* | Change the numeric ids of the new checkers.Claudiu Popa2015-10-181-0/+2
* | Merge with defaultiterable-checkerDmitry Pribysh2015-10-1819-0/+312
|\ \
| * | Make iterable/mapping checker more smart and refactor it.Dmitry Pribysh2015-10-1515-7/+145
| * | Handle more corner cases in iterable/mapping checkerDmitry Pribysh2015-10-084-31/+95
| * | Add more positive functional tests for the iterable context checkerDmitry Pribysh2015-10-082-25/+79
| * | Add functional tests for iterable heckerDmitry Pribysh2015-10-075-0/+56