Changelog
### 2.0.0
```
- Drop support for EOL Python <2.7 and 3.2-3.3
- Check for unused exception binding in `except:` block
- Handle string literal type annotations
- Ignore redefinitions of `_`, unless originally defined by import
- Support `__class__` without `self` in Python 3
- Issue an error for `raise NotImplemented(...)`
```
### 1.6.0
```
- Process function scope variable annotations for used names
- Find Python files without extensions by their shebang
```
### 1.5.0
```
- Enable support for PEP 526 annotated assignments
```
### 1.4.0
```
- Change formatting of ImportStarMessage to be consistent with other errors
- Support PEP 498 "f-strings"
```
### 1.3.0
```
- Fix PyPy2 Windows IntegrationTests
- Check for duplicate dictionary keys
- Fix TestMain tests on Windows
- Fix "continue" and "break" checks ignoring py3.5's "async for" loop
```
Links
- PyPI: https://pypi.org/project/pyflakes
- Changelog: https://pyup.io/changelogs/pyflakes/
- Repo: https://github.com/PyCQA/pyflakes
This PR updates pyflakes from 1.2.3 to 2.0.0.
Changelog
### 2.0.0 ``` - Drop support for EOL Python <2.7 and 3.2-3.3 - Check for unused exception binding in `except:` block - Handle string literal type annotations - Ignore redefinitions of `_`, unless originally defined by import - Support `__class__` without `self` in Python 3 - Issue an error for `raise NotImplemented(...)` ``` ### 1.6.0 ``` - Process function scope variable annotations for used names - Find Python files without extensions by their shebang ``` ### 1.5.0 ``` - Enable support for PEP 526 annotated assignments ``` ### 1.4.0 ``` - Change formatting of ImportStarMessage to be consistent with other errors - Support PEP 498 "f-strings" ``` ### 1.3.0 ``` - Fix PyPy2 Windows IntegrationTests - Check for duplicate dictionary keys - Fix TestMain tests on Windows - Fix "continue" and "break" checks ignoring py3.5's "async for" loop ```Links
- PyPI: https://pypi.org/project/pyflakes - Changelog: https://pyup.io/changelogs/pyflakes/ - Repo: https://github.com/PyCQA/pyflakes