summaryrefslogtreecommitdiff
path: root/pylint/test/functional
Commit message (Expand)AuthorAgeFilesLines
...
* Add test that a recursion error does not happen. Close PyCQA/astroid#623Claudiu Popa2019-01-182-0/+10
* Add test that a recursion error does not happen any longer. Close #2463Claudiu Popa2019-01-172-0/+9
* Fixed a false positive for ``unused-variable`` and ``nonlocal`` assignmentsClaudiu Popa2019-01-131-0/+13
* Generalize `chained-comparison` (#2655)Justin Li2018-12-212-13/+38
* ``no-member`` is emitted for enums when they lack a memberClaudiu Popa2018-12-112-2/+13
* Add ``no-else-raise`` warning (R1720) (#2636)Jim Robertson2018-12-112-0/+117
* Fix false positive Non-iterable value with async comprehensions (#2638)Pablo Galindo2018-12-111-0/+13
* Fix incorrect generation of ``no-else-raise`` warnings (R1705) (#2618)Jim Robertson2018-12-072-5/+45
* Fix false positive with `not-async-context-manager` caused by not understandi...Claudiu Popa2018-12-063-0/+14
* Fix error caused by the new checkClaudiu Popa2018-11-301-1/+1
* Added ``wrong-exception-operation``Claudiu Popa2018-11-292-0/+21
* Refactor ``bad-reversed-sequence`` to account for more objects that can defin...Claudiu Popa2018-11-281-0/+13
* implicit-str-concat-in-sequence: Handling lines with multi-bytes characters -...Lucas Cimon2018-11-264-0/+7
* Fixed literal-comparison for the case of 0 and 1 (#2601)Sergei Lebedev2018-11-232-2/+16
* Consider ``range()`` objects for ``undefined-loop-variable`` leaking from ite...Claudiu Popa2018-10-114-21/+25
* Adding implicit-str-concat-in-sequence check (#1655)Lucas Cimon2018-10-103-1/+31
* ``deprecated-method`` can use the attribute name for identifying a deprecated...Claudiu Popa2018-10-021-0/+3
* ``pylint`` is less eager to consume the whole line for pragmasClaudiu Popa2018-09-292-0/+19
* Correct test fileClaudiu Popa2018-09-291-1/+0
* Don't suggest identity check against the interpreter's True or False builtin ...Claudiu Popa2018-09-292-5/+6
* Add test case that deprecated method is emitted for unittest methods. Close #...Claudiu Popa2018-09-292-0/+15
* Add test case for logging-* errors for subclasses of logging.Logger. Close #960Claudiu Popa2018-09-292-1/+12
* Fix TypeError in test_good_comprehension_checksBenjamin Drung2018-09-281-7/+7
* Fix Windows newlines (CRLF) to Unix newlines (LF)Benjamin Drung2018-09-281-141/+141
* Fix utils.is_subclass_of to be aware of complex hierarchies (#2508)Sushobhit2018-09-281-1/+16
* Handle recursively the count of Starred nodes in assignmentsClaudiu Popa2018-09-242-2/+5
* Emit ``too-many-starred-assignment`` only when the number of Starred nodes is...Claudiu Popa2018-09-231-0/+1
* No enumerate check in __iter__ (#2505)Ben James2018-09-222-1/+23
* Added check simplifiable-if-expression (#2502)Tomer Chachamu2018-09-203-1/+32
* ``too-few-public-methods`` is not reported for ``typing.NamedTuple``Claudiu Popa2018-09-181-0/+5
* Partially revert commit fede47a625f40169bf839b7e8e2df643b3471635Claudiu Popa2018-09-182-18/+12
* ```too-few-public-methods`` is not reported for dataclasses created with opti...Claudiu Popa2018-09-151-0/+5
* Add a new check, ``duplicate-string-formatting-argument``Claudiu Popa2018-09-052-0/+17
* ``assignment-from-no-return`` is not emitted for coroutines.Claudiu Popa2018-09-053-0/+30
* ``consider-using-ternary`` and ``simplified-boolean-expression`` no longer em...Claudiu Popa2018-09-052-15/+7
* Switch to Unix line endingsClaudiu Popa2018-09-041-29/+29
* Handle ``AstroidSyntaxError`` when trying to import a module.Claudiu Popa2018-09-042-0/+3
* Allow ``__module__`` to be redefined at a class level. Close #2451Claudiu Popa2018-08-311-0/+14
* Emit unused-import instead of unused-variable when dealing with unused importsSushobhit2018-08-312-6/+13
* Handle asyncio.coroutine when looking for ``not-an-iterable`` check.Claudiu Popa2018-08-241-1/+38
* Add test for async generators. Close #1907Claudiu Popa2018-08-242-0/+17
* Infer decorated methods when looking for method-hiddenClaudiu Popa2018-08-231-1/+22
* Update the message for assignment-from-none and assignment-from-no-return to ...Claudiu Popa2018-08-231-2/+2
* Make sure to filter out None and Uninferable when gathering exceptionsClaudiu Popa2018-08-232-1/+10
* Pick the latest value from the inferred values when looking for ``raising-non...Claudiu Popa2018-08-221-0/+14
* Consider tuples in exc handler for ``try-except-raise``ssolanki2018-08-212-0/+23
* fix false positive ``undefined-variable``ssolanki2018-08-172-1/+27
* Add test for the new AsyncGenerator support. Close #2379Claudiu Popa2018-08-161-1/+14
* Remove occurrences of removed checksClaudiu Popa2018-08-1615-95/+11
* Extend the TYPE_CHECKING guard to TYPE_CHECKING name as well, not just the at...Claudiu Popa2018-08-151-0/+7