summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-22 15:01:59 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-22 15:01:59 (GMT)
commit7c3922f44c226eac29a497648bbc3cc8702905a8 (patch)
tree395bde42013572a48d3cf30ddc6d28fdd0cc1cb7 /Misc
parentfc6e8aabf58d748369e0d3b08495ac35a67d2870 (diff)
downloadcpython-7c3922f44c226eac29a497648bbc3cc8702905a8.zip
cpython-7c3922f44c226eac29a497648bbc3cc8702905a8.tar.gz
cpython-7c3922f44c226eac29a497648bbc3cc8702905a8.tar.bz2
Issue #1159051: GzipFile now raises EOFError when reading a corrupted file
with truncated header or footer. Added tests for reading truncated gzip and bzip2 files.
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 c5cbdec..c804516 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -202,6 +202,9 @@ Core and Builtins
Library
-------
+- Issue #1159051: GzipFile now raises EOFError when reading a corrupted file
+ with truncated header or footer.
+
- Issue #15861: tkinter now correctly works with lists and tuples containing
strings with whitespaces, backslashes or unbalanced braces.