summaryrefslogtreecommitdiff
path: root/pylint/test
Commit message (Expand)AuthorAgeFilesLines
* Allow statements in if or try blocks containing imports.Laura M?dioni2015-12-022-5/+17
* Added a new error, 'relative-beyond-top-level'.Claudiu Popa2015-12-063-1/+28
* Make pylint work with new astroid exceptions, AstroidImportError and AstroidS...Claudiu Popa2015-12-062-2/+2
* Don't emit super-on-old-class on classes with unknown bases.Claudiu Popa2015-12-062-14/+15
* Accept only functions and methods for the deprecated-method checker.Claudiu Popa2015-12-031-0/+65
* Disable persistence for test_self.Claudiu Popa2015-12-021-0/+1
* Try to register the else-if checker explicitly instead on relying on path ass...Claudiu Popa2015-12-021-4/+2
* Don't emit import-self and cyclic-import for relative imports of modules with...Claudiu Popa2015-12-014-1/+15
* Refactor things through the imports checkerClaudiu Popa2015-12-013-2/+12
* Add else-if-used rule functional testLaura M?dioni2015-11-302-0/+75
* Fix a crash which occurred when old visit methods are encounteredClaudiu Popa2015-11-301-1/+18
* Don't emit unsubscriptable-object if the node is found inside an abstract cla...Claudiu Popa2015-11-301-0/+25
* Add wrong-import-position to check_messages's decorator arguments for ImportC...Claudiu Popa2015-11-303-1/+36
* Add some more comments about the limitations of this ruleLaura M?dioni2015-11-241-3/+3
* Use a stack of dictionaries instead of 3 dictsLaura M?dioni2015-11-242-6/+17
* Remove test on str.split() since there is no support for inference on split f...Laura M?dioni2015-11-242-11/+5
* check if the type of a variable is redefined (at a function, class or module ...Laura M?dioni2015-10-306-4/+60
* Added a new warning, 'unsupported-delete-operation'Claudiu Popa2015-11-262-0/+111
* 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-254-5/+5
* 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-1039-61/+65
* Check imports are ordered (standard, 3rd party, local) and grouped by packageLaura M?dioni2015-11-0912-8/+48
* 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-3011-4/+88
|\
| * 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-295-3/+32
| * check for class methods declared without a decoratorLaura M?dioni2015-10-298-3/+40
* | 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