summaryrefslogtreecommitdiff
path: root/tests/functional/u/unused
Commit message (Expand)AuthorAgeFilesLines
* Fix check unused arguments false positive bug (#8542)Théo Battrel2023-04-062-0/+23
* Add regression test for #7506 (#8432)Jacob Walls2023-04-032-8/+11
* [cleanup] Upgrade more doc following the PyCQA migrationPierre Sassoulas2023-03-311-1/+1
* [PyCQA migration] Upgrade links to the repositories in code and doc (#8514)Pierre Sassoulas2023-03-298-18/+18
* Update docs for `global-variable-not-assigned` (#8151)Dani Alcala2023-02-011-1/+1
* Update disallowed-name to flag module-level variables (#7808)Dani Alcala2023-01-251-2/+2
* Clearer ``reimported`` and new ``shadowed-import`` messages for aliased impor...Dani Alcala2022-11-302-2/+2
* Fix a false negative for ``unused-import`` (#7678)Mark Byrne2022-11-093-0/+13
* Rename `broad-except` and new check `broad-exception-raised` (#7709)Dani Alcala2022-11-051-1/+1
* Fix bug in detecting ``unused-variable`` when iterating on variable. (#7537)Dani Alcala2022-09-281-0/+13
* Regression test for `unused-import` (#7510)Mark Byrne2022-09-222-15/+37
* False positive `global-variable-not-assigned` (#7479)Mark Byrne2022-09-192-3/+2
* Disambiguate between str and enum member args to typing.Literal (#7414)Levi Gruspe2022-09-123-3/+16
* Fix #3299 false positives with names in string literal type annotations (#7400)Levi Gruspe2022-09-048-0/+76
* Remove Python 2 code from the tests & refactor (#7320)Mark Byrne2022-08-188-50/+44
* Update `astroid` to 2.12 (#7153)Jacob Walls2022-07-132-11/+16
* Add regression test for #6895 (#6898)Jacob Walls2022-06-132-0/+9
* Prevent `unused-import` for `if t.TYPE_CHECKING`Jacob Walls2022-06-062-2/+28
* Fix a crash in `unused-private-member` with chained private attributes (#6710)Jacob Walls2022-05-262-0/+8
* Move no-self-use to optional extension (#6448)Marc Mueller2022-05-052-2/+2
* Update tests and testoptions for PyPyDaniël van Noord2022-05-031-1/+2
* [spelling] Remove remaining typoes detected by the spelling checkerPierre Sassoulas2022-04-261-1/+1
* [spelling] Fix all ie / eg => i.e. / e.g.Pierre Sassoulas2022-04-261-1/+1
* Normalize the pylint disables in functional testsPierre Sassoulas2022-04-182-2/+2
* Add test coverage for sibling except handlers (#6165)Jacob Walls2022-04-101-0/+11
* Fix false positive for ``unused-import`` when disabling both ``used-before-as...Andreas Finkler2022-04-031-0/+9
* Remove TODOs in `unused-variable` tests (#6162)Jacob Walls2022-04-032-19/+19
* Fix handling of "for x in x" homonyms (#6154)Jacob Walls2022-04-031-0/+7
* Account for more node types in handling of except block homonyms with compreh...Jacob Walls2022-04-022-6/+12
* Fix false positive for `unused-argument` where nested function uses parent ar...Jacob Walls2022-03-253-1/+10
* fix(4756): fix false positive `unused-private-member` for private methods (#5...yushao22022-03-152-20/+45
* Add regression test for #5771 (#5908)Jacob Walls2022-03-132-0/+16
* Use ``node.position`` in ``add_message`` if available (#5897)Daniël van Noord2022-03-122-14/+14
* Fix #5569: Fix a crash in `unused-private-member` when `type(self)` used in b...Jacob Walls2022-01-112-0/+11
* Move ``TestVariablesChecker`` to functional tests (#5419)Daniël van Noord2021-11-281-0/+13
* Make ``unused-import`` check all ancestors for typing guards (#5316)Daniël van Noord2021-11-251-0/+4
* Update functional test expected output (#5349)Daniël van Noord2021-11-2410-82/+82
* Fix crash on checking private members on ``__class__``Daniël van Noord2021-11-051-0/+9
* Add tests for assignment expressions in function defaults (#5188)Daniël van Noord2021-10-253-0/+43
* Improve and flatten ``unused-wildcard-import`` message (#5110)Daniël van Noord2021-10-042-4/+9
* Fix false positive ``unused-private-member`` for accessing attributes in a cl...yushao22021-09-142-3/+22
* 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
* Remove the python3 porting mode from the codebasePierre Sassoulas2021-09-013-3/+3
* Remove functional test configuration for python version <=3.6.0Pierre Sassoulas2021-08-303-5/+0
* Add ``Consider-using-f-string`` checker (#4796)Daniël van Noord2021-08-301-1/+1
* Add a regression test for #4837 (#4847)Pierre Sassoulas2021-08-152-0/+24
* Add regression tests for astroid issue 1111Pierre Sassoulas2021-08-042-1/+19
* Fix false negative for used-before-assignment (ExceptHandler) (#4791)David Liu2021-08-032-3/+3