14
0

Accepting request 668823 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/668823
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyflakes?expand=0&rev=44
This commit is contained in:
Tomáš Chvátal
2019-01-26 21:40:28 +00:00
committed by Git OBS Bridge
parent 9a84ee3138
commit 5039b2115b
4 changed files with 38 additions and 10 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Sat Jan 26 17:37:43 UTC 2019 - Arun Persaud <arun@gmx.de>
- specfile:
* update copyright year
* renamed NEWS.txt -> NEWS.rst
- update to version 2.1.0:
* Allow intentional assignment to variables named _
* Recognize __module__ as a valid name in class scope
* pyflakes.checker.Checker supports checking of partial ast trees
* Detect assign-before-use for local variables which shadow builtin
names
* Detect invalid print syntax using >> operator
* Treat async for the same as a for loop for introducing variables
* Add detection for list concatenation in __all__
* Exempt @typing.overload from duplicate function declaration
* Importing a submodule of an as-aliased import-import is marked as
used
* Report undefined names from __all__ as possibly coming from a *
import
* Add support for changes in Python 3.8-dev
* Add support for PEP 563 (from __future__ import annotations)
* Include Python version and platform information in pyflakes
--version
* Recognize __annotations__ as a valid magic global in Python 3.6+
* Mark names used in PEP 484 # type: ... comments as used
* Add check for use of is operator with str, bytes, and int literals
-------------------------------------------------------------------
Mon Jul 30 15:07:24 UTC 2018 - t.gruner@katodev.de