summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2011-08-13 13:22:40 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2011-08-13 13:22:40 (GMT)
commit1c38546e49e3f4bd53c0d470bcaaa9fb2f823401 (patch)
tree855b2bd6790b87283764b7043ed09ea6efa84d38 /Misc
parent74b6abf61f88221c4c859623a75655dcb214e072 (diff)
downloadcpython-1c38546e49e3f4bd53c0d470bcaaa9fb2f823401.zip
cpython-1c38546e49e3f4bd53c0d470bcaaa9fb2f823401.tar.gz
cpython-1c38546e49e3f4bd53c0d470bcaaa9fb2f823401.tar.bz2
Issue #12646: Add an 'eof' attribute to zlib.Decompress.
This will make it easier to detect truncated input streams. Also, make zlib's error messages more consistent.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 112badf..3c137e0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -254,6 +254,9 @@ Core and Builtins
Library
-------
+- Issue #12646: Add an 'eof' attribute to zlib.Decompress, to make it easier to
+ detect truncated input streams.
+
- Issue #11513: Fix exception handling ``tarfile.TarFile.gzopen()`` when
the file cannot be opened.