14
0

Accepting request 313119 from home:tbechtold:branches:devel:languages:python

- update to 0.9.2:
  - Fix a traceback when a global is defined in one scope, and used in another.
  - Update NEWS.txt to include 0.9.0, which had been forgotten.
  - Exit gracefully, not with a traceback, on SIGINT and SIGPIPE.
  - Fix incorrect report of undefined name when using lambda expressions in
    generator expressions.
  - Don't crash on DOS line endings on Windows and Python 2.6.
  - Don't report an undefined name if the 'del' which caused a name to become
    undefined is only conditionally executed.
  - Properly handle differences in list comprehension scope in Python 3.
  - Improve handling of edge cases around 'global' defined variables.
  - Report an error for 'return' outside a function.

OBS-URL: https://build.opensuse.org/request/show/313119
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyflakes?expand=0&rev=26
This commit is contained in:
2015-06-23 06:17:57 +00:00
committed by Git OBS Bridge
parent 06d6f7139f
commit 60e80652ee
4 changed files with 21 additions and 5 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Jun 22 15:15:47 UTC 2015 - tbechtold@suse.com
- update to 0.9.2:
- Fix a traceback when a global is defined in one scope, and used in another.
- Update NEWS.txt to include 0.9.0, which had been forgotten.
- Exit gracefully, not with a traceback, on SIGINT and SIGPIPE.
- Fix incorrect report of undefined name when using lambda expressions in
generator expressions.
- Don't crash on DOS line endings on Windows and Python 2.6.
- Don't report an undefined name if the 'del' which caused a name to become
undefined is only conditionally executed.
- Properly handle differences in list comprehension scope in Python 3.
- Improve handling of edge cases around 'global' defined variables.
- Report an error for 'return' outside a function.
-------------------------------------------------------------------
Fri Apr 11 19:17:34 UTC 2014 - toddrme2178@gmail.com