summaryrefslogtreecommitdiff
path: root/pyflakes/test
Commit message (Expand)AuthorAgeFilesLines
* allow redefinition of functions across match arms (#772)HEADmainAnthony Sottile2023-04-251-0/+11
* fix accessed global annotation being redefined in a local scope (#765)Anthony Sottile2023-01-311-0/+7
* produce an error when a definition shadows an unused assignment (#761)Anthony Sottile2023-01-121-0/+6
* handle deferred checking as a queue (#754)Anthony Sottile2022-11-271-0/+14
* pyflakes: python3.8+ (#752)Anthony Sottile2022-11-274-81/+10
* fix crash on augmented-assign to print builtin (#745)Anthony Sottile2022-11-241-0/+4
* remove handling of `# type:` comments now that pyflakes is py3+ (#684)Anthony Sottile2022-09-164-319/+22
* Detect unused annotations in functions (#668)Danny Sepler2022-09-161-4/+9
* detect undefined name of variable defined by AnnAssign (#729)Anthony Sottile2022-09-081-0/+5
* remove special handling of pypy offsets since modern pypy gets it right (#717)Anthony Sottile2022-07-182-43/+30
* fix syntax error reporting from stdin (#357) (#716)Steven Karas2022-07-181-1/+51
* burn the bridges with python 2.x (#707)Anthony Sottile2022-06-1212-412/+99
* remove backported unittest methods (#705)Anthony Sottile2022-05-301-35/+0
* simplify PYPY check (#703)Anthony Sottile2022-05-302-12/+2
* remove unused WIN (#702)Anthony Sottile2022-05-301-6/+0
* add tests for python3.11-specific syntax (#694)Anthony Sottile2022-05-302-0/+24
* assignment expression in comprehension should target outer scope (#698)Yann Sartori2022-05-301-0/+17
* support TypeAlias annotations (#679)Laurent Kadian2022-02-131-0/+40
* ignore `__all__` when not directly assigned (#675)Anthony Sottile2022-02-121-0/+6
* remove with_statement future imports (#663)Danny Sepler2021-11-211-16/+0
* Detect typing module attributes with 'import typing as <name>' (#632)Angus L'Herrou2021-10-051-0/+17
* add support for match statement (#630)Anthony Sottile2021-10-051-0/+83
* fix typo: annoation -> annotation (#636)Yusuke Hayashi2021-05-211-1/+1
* fix syntax error offsets for python 3.10 (#635)Anthony Sottile2021-05-201-15/+28
* Annotations no longer redefine names (#619)Anthony Sottile2021-03-241-0/+8
* Fix: Named types incorrectly raising UndefinedName inside annotated subscript...Léni2021-03-141-0/+41
* Fix annotation clobbering __all__ (#606)Anthony Sottile2021-01-051-0/+13
* Fix quoted type annotations in typing.TypeVar contexts (#534)Ran Benita2021-01-041-0/+15
* Recognize __qualname__ when used in class scope (#588)Pilou2020-10-121-0/+17
* Fix tests with Python 3.9, closes #549 (#586)Louis Sautier2020-10-021-2/+6
* Fix test_invalidEscape with recent PyPy3 versions, closes #584 (#585)Louis Sautier2020-10-021-16/+7
* fix: don't return syntax error for Annotated's metadata (#580)Sebastian Kreft2020-09-281-0/+36
* Fix undefined name in annotations (#535)Sebastian Rittau2020-09-281-0/+35
* Extend F822 to support tuple concatenation (#544)jack11422020-09-271-1/+10
* Add tests demonstrating common use of TYPE_CHECKING guards (#531)Anthony Sottile2020-04-271-0/+44
* Fix test for nightly Python (3.9) (#532)Petter Strandmark2020-04-261-0/+2
* Be more cautious when identifying typing Literal (#517)Anthony Sottile2020-03-171-0/+13
* Fix quoted type annotations in unusual contexts (#516)Peter Law2020-03-171-0/+40
* Add a check for if statement conditions which are non-empty tuples (#512)Peter Law2020-03-171-0/+23
* Fix bug in async function scope checking (#511)Peter Law2020-03-131-1/+7
* Warn about is comparison to tuple (#484)Anthony Sottile2020-02-171-0/+22
* Fix false positive with partially quoted annotations (#479)Anthony Sottile2020-02-141-0/+73
* Fix annotation of posonlyarg (#508)Anthony Sottile2020-01-171-0/+8
* Allow continue inside finally in 3.8+ (#476)Batuhan Taşkaya2019-11-031-0/+3
* fix test name typo (#478)Florian Dahlitz2019-10-051-1/+1
* Allow @overload on async functions as well (#472)Anthony Sottile2019-09-301-0/+18
* Support typing_extensions.overload in addition to typing.overload (#466)Michael J. Sullivan2019-09-281-0/+17
* Adjust tests for different SyntaxError offsets for pypy7.1.1 (#468)Anthony Sottile2019-09-282-19/+41
* Add support for PEP 572 assignment expressions (#457)Anthony Sottile2019-08-121-0/+9
* In PEP 484 type comments, allow text after "# type: ignore" (#455)Michael J. Sullivan2019-08-122-1/+22