Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Merged in dmand/pylint/comparison-checker (pull request #280) | Claudiu Popa | 2015-10-04 | 4 | -0/+101 | |
|\ \ | |/ |/| | | | Add checker for comparisons to singleton values (True, False, None) | |||||
| * | Add initial version of comparison checkercomparison-checker | Dmitry Pribysh | 2015-10-03 | 4 | -0/+101 | |
| | | | | | | | | | | It checks for expressions like 'x == True', 'x == False' and 'x == None' and suggests the correct usage ('x', 'not x', 'x is None'). | |||||
* | | Port more old tests to the new style tests and remove obsolete tests. | Claudiu Popa | 2015-10-03 | 24 | -205/+74 | |
|/ | ||||||
* | Fix multiple-imports error in epylint.py | Claudiu Popa | 2015-10-02 | 1 | -1/+2 | |
| | ||||||
* | Merged in dmand/pylint/multiple-imports-checker (pull request #279) | Claudiu Popa | 2015-10-02 | 8 | -5/+38 | |
|\ | | | | | | | Add checker to identify multiple imports on one line. | |||||
| * | Update contributors listmultiple-imports-checker | Dmitry Pribysh | 2015-10-01 | 1 | -0/+2 | |
| | | ||||||
| * | Change multiple-imports message type to `convention` with code C0410 | Dmitry Pribysh | 2015-10-01 | 1 | -1/+1 | |
| | | ||||||
| * | Add checker to identify multiple imports on one line. | Dmitry Pribysh | 2015-10-01 | 7 | -5/+36 | |
|/ | | | | Fixes issue #598. Had to modify some functional tests to ignore new message. | |||||
* | Update the list of special methods with the methods added in PEP 492. | Claudiu Popa | 2015-10-01 | 3 | -4/+23 | |
| | ||||||
* | Remove line from the license header, which was inadvertently copied from base.py | Claudiu Popa | 2015-10-01 | 1 | -1/+0 | |
| | ||||||
* | Start adding a protocol checker for the async features added in PEP 492: | Claudiu Popa | 2015-10-01 | 8 | -0/+188 | |
| | | | | | | | | | | | | | | * this patch adds the basis of a new checker, 'async', which deals with problems that can occur when working with async features added in Python with PEP 492. * We're also adding a new error, 'yield-inside-async-function', emitted on Python 3.5 and upwards when the `yield` statement is found inside a new coroutine function (PEP 492). * Another new error is added, 'not-async-context-manager', emitted when an async context manager block is used with an object which doesn't support this protocol (PEP 492). | |||||
* | Port more old style tests to new style tests. | Claudiu Popa | 2015-10-01 | 20 | -144/+98 | |
| | ||||||
* | Don't consider a class abstract if its members can't be properly inferred. | Claudiu Popa | 2015-09-30 | 6 | -14/+55 | |
| | | | | | This fixes a false positive related to abstract-class-instantiated. Closes issue #648. | |||||
* | Port more tests to the new test format. | Claudiu Popa | 2015-09-30 | 21 | -86/+35 | |
| | ||||||
* | Fix the tests. | Claudiu Popa | 2015-09-29 | 3 | -4/+4 | |
| | ||||||
* | Port some old style tests to new style tests. | Claudiu Popa | 2015-09-29 | 16 | -74/+30 | |
| | ||||||
* | Add ChangeLog entry for the deprecated-module change. | Claudiu Popa | 2015-09-27 | 1 | -0/+3 | |
| | ||||||
* | Merged in moylop260/pylint/fix-362 (pull request #277) | Claudiu Popa | 2015-09-27 | 0 | -0/+0 | |
|\ | | | | | | | Fix #362 - Show deprecated-module even if the module is not installed | |||||
* | | Remove unused linefix-362 | moylop260 | 2015-09-27 | 1 | -1/+0 | |
| | | ||||||
* | | revert original tox.ini | moylop260 | 2015-09-27 | 1 | -2/+1 | |
| | | ||||||
* | | revert temp comment | moylop260 | 2015-09-27 | 1 | -2/+2 | |
| | | ||||||
* | | Fix #362 - support in import and add test | moylop260 | 2015-09-27 | 7 | -3/+18 | |
| | | ||||||
* | | Fix #362 - Show deprecated-module even if the module is not installed | moylop260 | 2015-09-26 | 1 | -1/+1 | |
|/ | ||||||
* | Grammar fix. | Claudiu Popa | 2015-09-23 | 4 | -8/+8 | |
| | ||||||
* | Retrieve the qualified name only after filtering the proper needs. | Claudiu Popa | 2015-09-21 | 2 | -2/+9 | |
| | ||||||
* | Show what nonlocal was found without a binding. | Claudiu Popa | 2015-09-21 | 3 | -4/+17 | |
| | ||||||
* | Disable deprecated-method for using cgi.escape. | Claudiu Popa | 2015-09-21 | 1 | -2/+3 | |
| | ||||||
* | Add changelog entry for 014f596 and a couple of other fixes. | Claudiu Popa | 2015-09-21 | 4 | -4/+13 | |
| | ||||||
* | Add a comment regarding the nodes we're not interested into. | Claudiu Popa | 2015-09-21 | 1 | -1/+2 | |
| | ||||||
* | Merged in matrixise/pylint/fix-582 (pull request #274) | Claudiu Popa | 2015-09-21 | 5 | -1/+51 | |
|\ | | | | | | | Add a new check for the nonlocal variables without binding (close issue #582) | |||||
| * | Add a new check for the nonlocal variables without binding (close issue #582)fix-582 | Stephane Wirtel | 2015-09-21 | 5 | -1/+51 | |
| | | ||||||
* | | Merged in fnstudio/pylint (pull request #275) | Claudiu Popa | 2015-09-21 | 1 | -2/+10 | |
|\ \ | | | | | | | | | | Fix issue #314: bad-whitespace looks weird when the line does not end with newline | |||||
| * | | deprecated method names are shown correctly | palazzem | 2015-09-21 | 1 | -2/+10 | |
| | | | ||||||
| * | | Merged in palazzem/pylint (pull request #271) | Claudiu Popa | 2015-09-21 | 5 | -12/+35 | |
| |\ \ | | | | | | | | | | | | | fixed _check_deprecated_method during pylint linting | |||||
| * | | | fixed _check_deprecated_method during pylint linting | palazzem | 2015-09-21 | 1 | -2/+2 | |
| | |/ | |/| | ||||||
* | | | Fix issue #314: bad-whitespace looks weird when the line does not end with ↵ | Fabio Natali | 2015-09-21 | 3 | -2/+15 | |
| |/ |/| | | | | | newline | |||||
* | | Improve the test suite for deprecated-method | Claudiu Popa | 2015-09-21 | 5 | -12/+35 | |
|/ | ||||||
* | Fix tests and use all the inference results when checking for bad-open-mode ↵ | Claudiu Popa | 2015-09-21 | 3 | -16/+18 | |
| | | | | and deprecated-method | |||||
* | Merge heads | Claudiu Popa | 2015-09-20 | 11 | -176/+125 | |
|\ | ||||||
| * | Update contributors | Cezar | 2015-09-20 | 1 | -0/+2 | |
| | | ||||||
| * | Deprecation check based on Python version | Cezar | 2015-09-20 | 8 | -70/+100 | |
| | | ||||||
| * | Fix some errors | Cezar | 2015-09-20 | 3 | -6/+6 | |
| | | ||||||
| * | Remove old test for deprecated methods | Cezar | 2015-09-20 | 1 | -122/+0 | |
| | | ||||||
| * | Update functional tests for deprecated methods | Cezar | 2015-09-20 | 5 | -8/+30 | |
| | | ||||||
| * | Add checker for method deprecation | Cezar | 2015-09-20 | 1 | -50/+67 | |
| | | ||||||
| * | Add tests for deprecation | Cezar | 2015-09-19 | 1 | -0/+122 | |
| | | ||||||
| * | Add deprecation checkers | Cezar | 2015-09-19 | 1 | -27/+59 | |
| | | ||||||
| * | Merged logilab/pylint into default | cezarelnazli | 2015-09-19 | 3 | -1/+19 | |
| |\ | ||||||
| * | | Document the checker method | Cezar | 2015-09-19 | 1 | -0/+4 | |
| | | | ||||||
| * | | Add check for deprecated unittest aliases | Cezar | 2015-09-19 | 1 | -2/+25 | |
| | | |