summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Frost <indigo@bitglue.com>2015-06-09 21:55:17 -0400
committerPhil Frost <indigo@bitglue.com>2015-06-09 21:55:17 -0400
commit5c8ed3182a56989c317d07b4b8cd10270f4d6e89 (patch)
tree0416485940e150b0062a8397962a497067ff12f8
parentea4e8a190c02efcdaebebdfc733d6f071b9fa9a3 (diff)
parent8f30620876446deb27abe2749d847946556d84ad (diff)
downloadpyflakes-5c8ed3182a56989c317d07b4b8cd10270f4d6e89.tar.gz
Merge branch '0.9'
Conflicts: pyflakes/__init__.py
-rw-r--r--NEWS.txt15
1 files changed, 13 insertions, 2 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 7e81cf7..c4c6215 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,5 +1,16 @@
-UNRELEASED:
- - Skip the traceback on Control+C and "Broken pipe" signals.
+0.9.1 (2015-06-09):
+ - Update NEWS.txt to include 0.9.0, which had been forgotten.
+
+0.9.0 (2015-05-31):
+ - 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.
0.8.1 (2014-03-30):
- Detect the declared encoding in Python 3.