summaryrefslogtreecommitdiff
path: root/pyflakes
Commit message (Expand)AuthorAgeFilesLines
* allow redefinition of functions across match arms (#772)HEADmainAnthony Sottile2023-04-252-1/+14
* fix accessed global annotation being redefined in a local scope (#765)Anthony Sottile2023-01-312-1/+8
* produce an error when a definition shadows an unused assignment (#761)Anthony Sottile2023-01-122-0/+11
* pushScope / popScope -> with in_scope(...) (#755)Anthony Sottile2022-11-271-47/+45
* handle deferred checking as a queue (#754)Anthony Sottile2022-11-272-20/+28
* remove outdated / incorrect comments (#753)Anthony Sottile2022-11-271-11/+1
* pyflakes: python3.8+ (#752)Anthony Sottile2022-11-277-133/+26
* fold unused checks into final scope checking (#750)Anthony Sottile2022-11-271-30/+7
* Release 3.0.13.0.1Anthony Sottile2022-11-241-1/+1
* fix crash on augmented-assign to print builtin (#745)Anthony Sottile2022-11-242-4/+7
* Release 3.0.03.0.0Anthony Sottile2022-11-231-1/+1
* remove unused isGenerator (#737)Anthony Sottile2022-11-031-2/+0
* remove handling of `# type:` comments now that pyflakes is py3+ (#684)Anthony Sottile2022-09-167-430/+30
* Detect unused annotations in functions (#668)Danny Sepler2022-09-163-8/+43
* detect undefined name of variable defined by AnnAssign (#729)Anthony Sottile2022-09-082-1/+6
* remove __init__ which is identical to parent (#726)Anthony Sottile2022-08-311-4/+0
* Release 2.5.0 (#720)2.5.0Anthony Sottile2022-07-301-1/+1
* remove special handling of pypy offsets since modern pypy gets it right (#717)Anthony Sottile2022-07-184-69/+35
* fix syntax error reporting from stdin (#357) (#716)Steven Karas2022-07-183-16/+70
* burn the bridges with python 2.x (#707)Anthony Sottile2022-06-1217-639/+203
* upgrade flake8 to 4.0.1 (#706)Anthony Sottile2022-05-301-6/+4
* remove backported unittest methods (#705)Anthony Sottile2022-05-301-35/+0
* remove checking of node.docstring (#704)Anthony Sottile2022-05-301-13/+1
* simplify PYPY check (#703)Anthony Sottile2022-05-303-17/+3
* remove unused WIN (#702)Anthony Sottile2022-05-301-6/+0
* remove unused names argument in LateFutureImport (#701)Anthony Sottile2022-05-302-3/+2
* Unify output : characters. Fixes #692 (#693)Malware Utkonos2022-05-301-2/+2
* add tests for python3.11-specific syntax (#694)Anthony Sottile2022-05-303-1/+25
* assignment expression in comprehension should target outer scope (#698)Yann Sartori2022-05-302-1/+33
* support TypeAlias annotations (#679)Laurent Kadian2022-02-132-3/+47
* ignore `__all__` when not directly assigned (#675)Anthony Sottile2022-02-122-1/+14
* remove with_statement future imports (#663)Danny Sepler2021-11-212-18/+0
* Release 2.4.0 (#657)2.4.0Anthony Sottile2021-10-061-1/+1
* Detect typing module attributes with 'import typing as <name>' (#632)Angus L'Herrou2021-10-052-1/+28
* add support for match statement (#630)Anthony Sottile2021-10-052-1/+96
* fix typo: annoation -> annotation (#636)Yusuke Hayashi2021-05-211-1/+1
* remove old and unused "tracing" code (#625)Terence Honles2021-05-201-5/+0
* fix syntax error offsets for python 3.10 (#635)Anthony Sottile2021-05-201-15/+28
* Release 2.3.12.3.1Anthony Sottile2021-03-241-1/+1
* Annotations no longer redefine names (#619)Anthony Sottile2021-03-242-0/+12
* Release 2.3.0 (#608)2.3.0Anthony Sottile2021-03-141-1/+1
* Fix: Named types incorrectly raising UndefinedName inside annotated subscript...Léni2021-03-142-12/+104
* Fix annotation clobbering __all__ (#606)Anthony Sottile2021-01-052-1/+17
* deterministic ordering for errors in __all__ (#604)Anthony Sottile2021-01-041-1/+4
* Fix quoted type annotations in typing.TypeVar contexts (#534)Ran Benita2021-01-042-0/+28
* Recognize __qualname__ when used in class scope (#588)Pilou2020-10-122-1/+22
* simplify typing.Literal check (#587)Anthony Sottile2020-10-031-6/+2
* 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-282-9/+71