Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: chrisburr/pyflakes

Tags

1.4.0

Toggle 1.4.0's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release 1.4.0

  - Change formatting of ImportStarMessage to be consistent with other errors
  - Support PEP 498 "f-strings"

1.3.0

Toggle 1.3.0's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release 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

1.2.3

Toggle 1.2.3's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release 1.2.3

  - Fix TypeError when processing relative imports

1.2.2

Toggle 1.2.2's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release 1.2.2

  - Avoid traceback when exception is del-ed in except

1.2.1

Toggle 1.2.1's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release 1.2.1

 - Fix false RedefinedWhileUnesed for submodule imports

1.2.0

Toggle 1.2.0's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release 1.2.0

  - Warn against reusing exception names after the except: block on
    Python 3
  - Improve the error messages for imports

1.1.0

Toggle 1.1.0's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release 1.1.0

* main() can now accept arguments
* the matrix-multiplication operator (@) is now supported
* imports from __future__ are checked for validity
* fixes to doctest scope testing
* asserts against a tuple (which are always true) now emits a warning
* "import *" not at the module level on python3 emits a warning
* many kinds of SyntaxErrors not previously caught now are
* PEP 498 f-strings are checked
* and a few more sundry bugfixes

I'd like to thank this release's contributors:

* Aaron Meurer
* Ian Cordasco
* John Vandenberg
* Nik Nyby
* Steven Myint

1.0.0

Toggle 1.0.0's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
bitglue Phil Frost
Release version 1.0.0

After about a decade of Pyflakes, it's certainly no longer "pre 1.0"
software. There are no big changes since 0.9.2, really. It just felt
like the right thing to do.

New in this release:

  - Python 3.5 support. async/await statements in particular.

Sundry bugfixes:

  - test_api.py works on Windows now
  - Eliminated a false UnusedImport warning when the name has been
    declared "global"

Behind the scenes there have also been some adjustments to the CI
process to make sure 3.5 is tested, and a few more test cases added just
to better document why things are as they are.

I'd like to thank contributors to this release:

  - Eduard-Cristian Stefan
  - Ian Cordasco
  - Igor Davydenko
  - Ryne Everett
  - Steven Myint

0.9.2

Toggle 0.9.2's commit message
Release 0.9.2

- Fix a traceback when a global is defined in one scope, and used in
  another.

0.9.1

Toggle 0.9.1's commit message
Release 0.9.1

- Update NEWS.txt to include 0.9.0, which had been forgotten.