summaryrefslogtreecommitdiff
path: root/tests/functional/u
Commit message (Expand)AuthorAgeFilesLines
* Fix crash on ``open()`` calls for non-string ``mode`` arguments (#5332)Daniël van Noord2021-11-202-17/+79
* Move ``misplaced-comparison-constant`` to optional extension (#5298)Daniël van Noord2021-11-142-2/+1
* Add checker `using-final-decorator-in-unsupported-version` (#5165)Mark Byrne2021-11-093-0/+47
* Fix crash on checking private members on ``__class__``Daniël van Noord2021-11-051-0/+9
* Inspection for `with threading.Lock():` (#5245)Martin2021-11-032-0/+69
* Add control flow check for ``undefined-variable`` in ``if ... else``Daniël van Noord2021-10-262-1/+52
* Add tests for assignment expressions in function defaults (#5188)Daniël van Noord2021-10-255-1/+79
* Fix regression for ``_is_only_type_assignment`` (#5163)Daniël van Noord2021-10-235-37/+112
* Make ``used-before-assignment`` consider classes in method annotation and def...Daniël van Noord2021-10-237-10/+74
* Fix use-implicit-booleaness-not-comparison crash (#5176)Jaehoon Hwang2021-10-232-27/+87
* Fix useless-super-delegation false positive when default keyword argument is ...Nick Pesce2021-10-192-18/+38
* Make ``undefined-variable`` check line numbers of metaclass parametersDaniël van Noord2021-10-182-0/+11
* Add test for #4021Daniël van Noord2021-10-182-8/+21
* Add a warning ``use-implicit-booleaness-not-comparison`` for comparison with ...Jaehoon Hwang2021-10-172-0/+166
* Make ``undefined-variable`` flag type annotation without value assignment (#5...Daniël van Noord2021-10-152-32/+68
* Add ``using-f-string-in-unsupported-version`` checker (#5139)Daniël van Noord2021-10-113-0/+9
* Properly identify undocumented parameters and add new message called missing-...Konstantina Saketou2021-10-102-4/+5
* Rename `len-as-condition` to `use-implicit-booleaness-not-len` (#5132)Jaehoon Hwang2021-10-102-0/+215
* Fix crash with AssignAttr in TYPE_CHECKING blocks (#5118)Marc Mueller2021-10-051-0/+10
* Improve and flatten ``unused-wildcard-import`` message (#5110)Daniël van Noord2021-10-042-4/+9
* Fix false-positive ``useless-suppression`` for ``line-too-long`` (#5077)Daniël van Noord2021-09-281-3/+9
* Fix ``useless-suppression`` for ``wrong-import-order`` (#5063)Daniël van Noord2021-09-231-0/+6
* Fix ``unspecified-encoding`` for ``Path.read_text()``Daniël van Noord2021-09-172-3/+4
* Spelling and grammar fixesVille Skyttä2021-09-172-2/+2
* Fix ``unspecified-encoding`` for `Path()`Daniël van Noord2021-09-162-0/+12
* Fix false positive ``unused-private-member`` for accessing attributes in a cl...yushao22021-09-142-3/+22
* Fix false negative for use-symbolic-messagePierre Sassoulas2021-09-142-14/+15
* Make ``global-variable-not-assigned`` check local scope (#4990)Daniël van Noord2021-09-112-3/+4
* fix false positive W0238 with private staticmethod used from classmethod (#4949)Kayran Schmidt2021-09-072-2/+21
* Refactor various typing related issues (#4940)Daniël van Noord2021-09-031-2/+2
* Extend ``unspecified-encoding`` checkerDaniël van Noord2021-09-012-15/+40
* Remove the python3 porting mode from the codebasePierre Sassoulas2021-09-014-4/+4
* Add regression test for false positive on collections.abcPierre Sassoulas2021-08-302-0/+17
* Remove functional test configuration for python version <=3.6.0Pierre Sassoulas2021-08-3010-19/+0
* Add ``Consider-using-f-string`` checker (#4796)Daniël van Noord2021-08-304-4/+4
* Add a regression test for #4837 (#4847)Pierre Sassoulas2021-08-152-0/+24
* Fix existing testsMarc Mueller2021-08-131-1/+1
* Add new check - use-sequence-for-iterationMarc Mueller2021-08-132-0/+20
* Add ``redundant-u-string-prefix`` checker (#4804)Daniël van Noord2021-08-061-1/+1
* Add regression tests for astroid issue 1111Pierre Sassoulas2021-08-042-1/+19
* Add regression tests for issue #3711Pierre Sassoulas2021-08-041-0/+30
* Fix false negative for used-before-assignment (ExceptHandler) (#4791)David Liu2021-08-034-3/+52
* Fix crash for `unused-private-member` when there are nested attributes (#4783)yushao22021-08-012-10/+30
* Fix false-positive of `unused-private-member` with class name (#4782)yushao22021-08-012-0/+25
* Update pr based on reviewYu Shao, Pang2021-08-012-6/+4
* [unused-private-member] add logic for checking nested functionsYu Shao, Pang2021-08-012-0/+45
* Add new checkers ``use-list-literal`` and ``use-dict-literal`` (#4769)Daniël van Noord2021-07-298-7/+25
* Add unspecified-encoding checker #3826 (#4753)Daniël van Noord2021-07-283-0/+72
* Fix false positive undefined variable in decorator with list comprehension (#...Marcin Kurczewski2021-07-222-0/+21
* Ignore import errors if in guarded import block (#4702)Marc Mueller2021-07-191-0/+8