14
0

Accepting request 229773 from home:TheBlackCat:branches:devel:languages:python

Update to 0.8.1

OBS-URL: https://build.opensuse.org/request/show/229773
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyflakes?expand=0&rev=24
This commit is contained in:
Todd R
2014-04-11 19:50:21 +00:00
committed by Git OBS Bridge
parent 1d887d99d2
commit 06d6f7139f
4 changed files with 36 additions and 9 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Fri Apr 11 19:17:34 UTC 2014 - toddrme2178@gmail.com
- Update to 0.8.1:
- Detect the declared encoding in Python 3.
- Do not report redefinition of import in a local scope, if the
global name is used elsewhere in the module.
- Catch undefined variable in loop generator when it is also used as
loop variable.
- Report undefined name for `(a, b) = (1, 2)` but not for the general
unpacking `(a, b) = func()`.
- Correctly detect when an imported module is used in default arguments
of a method, when the method and the module use the same name.
- Distribute a universal wheel file.
- Update to 0.8.0:
- Adapt for the AST in Python 3.4.
- Fix caret position on SyntaxError.
- Fix crash on Python 2.x with some doctest SyntaxError.
- Add tox.ini.
- The `PYFLAKES_NODOCTEST` environment variable has been replaced with the
`PYFLAKES_DOCTEST` environment variable (with the opposite meaning).
Doctest checking is now disabled by default; set the environment variable
to enable it.
- Correctly parse incremental `__all__ += [...]`.
- Catch return with arguments inside a generator (Python <= 3.2).
- Do not complain about `_` in doctests.
- Drop deprecated methods `pushFunctionScope` and `pushClassScope`.
-------------------------------------------------------------------
Tue Nov 19 15:43:47 UTC 2013 - dmueller@suse.com