summaryrefslogtreecommitdiff
path: root/pylint/checkers/variables.py
Commit message (Expand)AuthorAgeFilesLines
* Fix new import related errors in pylint's codebase.Claudiu Popa2015-11-251-2/+2
* Fix instances of unneeded-not in pylint's codebase.Claudiu Popa2015-11-251-1/+1
* Cleanup pylint issuesClaudiu Popa2015-11-211-1/+1
* Import has_known_bases and safe_infer back into pylint from astroid, until th...Claudiu Popa2015-11-201-3/+3
* Use safe inference in unpacking-non-sequence checkerDmitry Pribysh2015-11-091-1/+3
* Add ChangeLog entry for too-many-nested-blocks and fix the errors in pylint.Claudiu Popa2015-11-041-16/+18
* Make tuple unpacking checker emit less false negativesDmitry Pribysh2015-10-291-12/+8
* Fix documentation build warnings and errorsDmitry Pribysh2015-10-221-1/+1
* Use the new node names for the visit and leave methodsClaudiu Popa2015-08-261-8/+8
* Remove trailing whitespaces and other pylint related issues.Claudiu Popa2015-08-251-5/+5
* Update pylint to use the new astroid AST names and methodsClaudiu Popa2015-08-251-40/+41
* Remove unused variable.Claudiu Popa2015-07-161-1/+0
* Improve detection of relative imports in non-packages, as well as importing m...Claudiu Popa2015-07-141-1/+1
* Move the code which checks undefined-all-variable into a new private function.Claudiu Popa2015-06-201-40/+47
* Don't emit undefined-all-variable for nodes which can't be inferred (which re...Claudiu Popa2015-06-201-0/+2
* Pass the invalid __all__ element in a tuple to add_message method, in order t...Claudiu Popa2015-05-251-2/+2
* Don't emit undefined-variable if the node is guarded by a NameError, Exceptio...Claudiu Popa2015-05-191-2/+5
* Don't emit no-name-in-module for nodes protected by an except clause which ha...Claudiu Popa2015-05-171-3/+3
* Use the map version from six.moves.Claudiu Popa2015-05-161-1/+1
* Don't emit no-name-in-module if the import is guarded by an ImportError handler.Claudiu Popa2015-05-161-1/+11
* Refactoring of visit_name from variables.py, which is a horrendous function w...Claudiu Popa2015-05-121-105/+130
* Improve the detection of undefined variables in function argumentsClaudiu Popa2015-05-121-1/+19
* Use the base_scope_type instead of looking in self._to_consume directly.Claudiu Popa2015-05-121-3/+3
* Remove trailing whitespace.Claudiu Popa2015-05-121-1/+1
* Detect undefined-variables in function default arguments.Claudiu Popa2015-05-121-9/+22
* Improve detection of undefined variables.Claudiu Popa2015-05-111-5/+10
* #518 fix unused-argument false positive when += is usedRadu Ciorba2015-05-091-4/+1
* Remove interface-not-implemented warning. Closes issue #532.Claudiu Popa2015-05-051-1/+1
* Remove trailing whitespace.Claudiu Popa2015-04-161-1/+1
* Replace some strings with a global variable, for clarity.Claudiu Popa2015-04-161-2/+2
* Don't emit redefined-outer-name for __future__ directives.Claudiu Popa2015-04-161-4/+11
* Merged in raduciorba/pylint/unused-import (pull request #244)Claudiu Popa2015-04-021-1/+1
|\
| * issue-422 solved some pylint warnings when running pylint on pylint code baseSimu Toni2015-03-281-2/+2
* | fix indentation, add changelog entryunused-importRadu Ciorba2015-03-311-2/+2
* | fix commentRadu Ciorba2015-03-301-1/+1
* | add another test case + fixed an import errorRadu Ciorba2015-03-301-1/+1
* | fix unused-import false positive when the import is used in a class assignmentRadu Ciorba2015-03-301-5/+11
|/
* Don't emit an unused-wildcard-import for imported __future__ names from other...Claudiu Popa2015-03-261-1/+23
* Promote a couple of warnings to errors.Claudiu Popa2015-03-201-4/+6
* Move all package files to a pylint package.Ionel Cristian Maries2015-02-141-0/+1069