summaryrefslogtreecommitdiff
path: root/pylint/checkers/variables.py
Commit message (Expand)AuthorAgeFilesLines
* Check if node is in list comprehension in function defaultsBryce Guinta2018-03-031-2/+6
* Fix false positive undefined-variable for lambda arguments in classesBryce Guinta2018-03-021-2/+11
* Exempt `__doc__` from triggering a `redefined-builtin`Claudiu Popa2018-03-011-1/+1
* Backport of PR #1757hippo912018-01-041-38/+115
* Regenerate copyright noticesClaudiu Popa2017-12-151-3/+19
* past.builtins import don't trigger redefined-builtin. Close #1764Claudiu Popa2017-12-121-1/+1
* Adding a check for ``inconsistent-return-statements`` inside function or meth...hippo912017-09-261-1/+3
* Add a couple of Uninferable filters where we weren't using anyClaudiu Popa2017-08-151-2/+2
* Don't mark dynamically added __class__ as unused variable. Close #1609Claudiu Popa2017-08-091-0/+7
* Fixed grammatical mistake in error message. (#1517)Dan Garrette2017-06-071-1/+1
* Handle keyword-only args annotation variables. Close #1168Claudiu Popa2017-04-121-0/+1
* Spelling fixes (#1397)Ville Skyttä2017-04-021-1/+1
* Add ignored_ and unused_ to unused-* inspections (#1357)Nathaniel Manista2017-03-071-2/+2
* Objects with the same name as inner attributes are not marked as unused any l...Derek Gustafson2017-01-211-5/+13
* Fix not-used-before-assignment false positive (#1266)Łukasz Rogalski2017-01-041-2/+3
* Check if a name is locally assigned when looking for used-before-assignmentŁukasz Rogalski2017-01-031-1/+10
* Don't emit used-before-assignment in certain single statement functionsClaudiu Popa2016-12-181-1/+9
* New refactoring checker: consider-using-ternary (#1210)Łukasz Rogalski2016-12-181-1/+1
* Improve metaclass detection in nested scopes in Python 3 (#1202)Łukasz Rogalski2016-12-161-45/+57
* Aliasing an import with underscore skips unused-import checkDerek Gustafson2016-12-141-0/+2
* Add a new option for finding unused global variables.Łukasz Rogalski2016-12-131-1/+21
* Skip checking only of arguments when in a singledispatched function.Claudiu Popa2016-12-041-5/+3
* Don't emit unused-argument and function-redefined for singledispatch implemen...Łukasz Rogalski2016-12-041-0/+4
* Treat keyword only arguments the same as positional arguments with regard to ...Claudiu Popa2016-11-201-1/+4
* Don't warn about used-before-assignment if the variable is in an exclusive ex...Claudiu Popa2016-08-231-3/+1
* Allow underscores in unused-variables. (#1058) (#1059)Grant Welch2016-08-141-1/+1
* Kill assign_names, it is just nodes_of_class after all.Claudiu Popa2016-07-281-1/+1
* assign_names return only AssignName nodes now, instead of strings.Claudiu Popa2016-07-281-1/+1
* Use attributes from modules instead of cluttering the namespace.Claudiu Popa2016-07-271-52/+45
* Move _for_loop_assign_names into utils.assign_name so it can be reused.Claudiu Popa2016-07-271-25/+2
* Even more granular copyrights (thanks to copyrite)Claudiu Popa2016-07-231-2/+8
* Keep a consistent copyright notice across the board.Claudiu Popa2016-07-191-0/+2
* Added check for an inner loop reusing an outer loop's target(s)Ashley Whetter2016-07-151-1/+53
* ignored-argument-names is now used for ignoring arguments for unused-variable...Claudiu Popa2016-06-271-2/+18
* Move a staticmethod into a function.Claudiu Popa2016-06-241-7/+7
* Remove additional star.Claudiu Popa2016-06-241-1/+1
* Variables prepended with underscores are now marked as unused through the upd...Claudiu Popa2016-06-241-1/+1
* Fix a bug where the top name of a qualified import was detected as unused var...Claudiu Popa2016-06-141-0/+5
* Install the backport of lru_cache and use it for overriden_method (the same b...Claudiu Popa2016-06-141-0/+5
* Capitalize some comments.Claudiu Popa2016-06-141-6/+7
* Simplify the function that looks for undefined variables by moving most of it...Claudiu Popa2016-06-141-54/+61
* Make pylint work with the astroid's master branch, including the special mode...Claudiu Popa2016-06-051-14/+9
* Add the new shorter license header, including to missing files. Close #894.Claudiu Popa2016-06-011-15/+3
* Do not emit import-error or no-name-in-module for fallback import blocks by d...Claudiu Popa2016-05-311-6/+15
* Fix typos (#916)Jakub Wilk2016-05-251-1/+1
* Add a new option, 'redefining-builtins-modules'.Claudiu Popa2016-03-251-3/+16
* Don't use line continuation for strings.Claudiu Popa2016-03-251-6/+7
* Ignore __all__ elements that don't have a parentClaudiu Popa2016-03-111-0/+2
* Remove trailing whitespace.Claudiu Popa2016-01-091-1/+1
* Treat AsyncFunctionDef just like FunctionDef nodesClaudiu Popa2016-01-091-1/+4