| Commit message (Expand) | Author | Age | Files | Lines |
* | Use the new .ctx attribute for subscripts for detecting in which context the ... | Claudiu Popa | 2015-12-08 | 1 | -25/+9 |
* | Allow statements in if or try blocks containing imports. | Laura M?dioni | 2015-12-02 | 1 | -3/+18 |
* | Move the construction of generated_members into open. | Claudiu Popa | 2015-12-07 | 1 | -10/+10 |
* | Added a new error, 'relative-beyond-top-level'. | Claudiu Popa | 2015-12-06 | 1 | -6/+20 |
* | Make pylint work with new astroid exceptions, AstroidImportError and AstroidS... | Claudiu Popa | 2015-12-06 | 2 | -14/+12 |
* | Don't emit super-on-old-class on classes with unknown bases. | Claudiu Popa | 2015-12-06 | 1 | -9/+5 |
* | Accept only functions and methods for the deprecated-method checker. | Claudiu Popa | 2015-12-03 | 1 | -3/+9 |
* | Don't emit import-self and cyclic-import for relative imports of modules with... | Claudiu Popa | 2015-12-01 | 1 | -3/+15 |
* | Refactor things through the imports checker | Claudiu Popa | 2015-12-01 | 1 | -65/+80 |
* | Don't emit unsubscriptable-object if the node is found inside an abstract cla... | Claudiu Popa | 2015-11-30 | 1 | -0/+3 |
* | Add wrong-import-position to check_messages's decorator arguments for ImportC... | Claudiu Popa | 2015-11-30 | 1 | -1/+2 |
* | Don't use .iteritems, it doesn't exist on Python 3. Change some variable name... | Claudiu Popa | 2015-11-29 | 1 | -11/+8 |
* | Add some more comments about the limitations of this rule | Laura M?dioni | 2015-11-24 | 1 | -0/+7 |
* | Drop print | Laura M?dioni | 2015-11-24 | 1 | -2/+0 |
* | Use a stack of dictionaries instead of 3 dicts | Laura M?dioni | 2015-11-24 | 1 | -24/+8 |
* | check if the type of a variable is redefined (at a function, class or module ... | Laura M?dioni | 2015-10-30 | 1 | -0/+88 |
* | Added a new warning, 'unsupported-delete-operation' | Claudiu Popa | 2015-11-26 | 2 | -21/+39 |
* | Added a new warning, 'unsupported-assignment-operation' | Claudiu Popa | 2015-11-26 | 2 | -9/+47 |
* | Simplify the protocol methods, by using a common function. | Claudiu Popa | 2015-11-26 | 1 | -41/+12 |
* | Ignore multiple comparisons in unneeded-not rule | Laura M?dioni | 2015-11-25 | 1 | -0/+3 |
* | Make some imports external instead of considering them local | Claudiu Popa | 2015-11-25 | 1 | -3/+3 |
* | Change the variable name to something more suggestive | Claudiu Popa | 2015-11-25 | 1 | -6/+7 |
* | Fix some docstrings and the Python 3 tests | Claudiu Popa | 2015-11-25 | 1 | -3/+5 |
* | Fix new import related errors in pylint's codebase. | Claudiu Popa | 2015-11-25 | 12 | -30/+39 |
* | Improve a bit wrong-import-position code and add comments | Laura M?dioni | 2015-11-24 | 1 | -7/+11 |
* | Simplify a bit the algorithm checking for ungrouped imports | Laura M?dioni | 2015-11-24 | 1 | -12/+8 |
* | Remove a chunk of code that was never executed | Laura M?dioni | 2015-11-23 | 1 | -3/+0 |
* | Factorize code in _record_import method | Laura M?dioni | 2015-11-23 | 1 | -9/+13 |
* | slightly change wrong-import-position message and add forgotten functional test | Laura M?dioni | 2015-11-12 | 1 | -2/+2 |
* | Check imports are located at the top of the module (right after docstring and... | Laura M?dioni | 2015-11-10 | 1 | -0/+36 |
* | Check imports are ordered (standard, 3rd party, local) and grouped by package | Laura M?dioni | 2015-11-09 | 1 | -1/+83 |
* | Fix instances of unneeded-not in pylint's codebase. | Claudiu Popa | 2015-11-25 | 4 | -4/+4 |
* | Add is to the checked operators | Laura M?dioni | 2015-11-24 | 1 | -1/+1 |
* | Fix crash with 'in' operator on unneeded-not | Laura M?dioni | 2015-10-29 | 1 | -1/+3 |
* | improve NotChecker | Laura M?dioni | 2015-10-27 | 1 | -5/+8 |
* | improve unneeded-not messages | Laura M?dioni | 2015-10-27 | 1 | -2/+2 |
* | Check for nots too many in comparison expressions | Laura M?dioni | 2015-10-26 | 1 | -0/+31 |
* | Ignore missing docstrings for decorated attribute setters and deleters | Michael Kefeder | 2015-11-19 | 1 | -0/+12 |
* | Cleanup pylint issues | Claudiu Popa | 2015-11-21 | 6 | -23/+18 |
* | Added a new refactoring warning, 'simplifiable-if-statement' | Claudiu Popa | 2015-11-21 | 1 | -1/+83 |
* | Use the correct module. | Claudiu Popa | 2015-11-20 | 1 | -2/+2 |
* | Simplify the unflatten algorithm in order to not use NodeNG anymore. | Claudiu Popa | 2015-11-20 | 1 | -5/+7 |
* | Import has_known_bases and safe_infer back into pylint from astroid, until th... | Claudiu Popa | 2015-11-20 | 12 | -74/+106 |
* | Merged in anentropic/pylint/remove-E0201-references (pull request #303) | Claudiu Popa | 2015-11-18 | 1 | -1/+1 |
|\ |
|
| * | error E0201 is obsolete - now E1101remove-E0201-references | Anentropic | 2015-11-18 | 1 | -1/+1 |
* | | check the number of boolean expressions in if statement is reasonnable | Laura M?dioni | 2015-10-29 | 1 | -2/+42 |
* | | Use safe inference in unpacking-non-sequence checker | Dmitry Pribysh | 2015-11-09 | 1 | -1/+3 |
* | | Refactor non-iterator-returned checker to use safe inference | Dmitry Pribysh | 2015-11-09 | 1 | -8/+24 |
* | | fix get_type() | Laura M?dioni | 2015-11-06 | 1 | -1/+1 |
* | | Reduce number of false positives emitted by non-iterator-returned checker | Dmitry Pribysh | 2015-11-07 | 1 | -4/+7 |
|/ |
|