summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2013-12-04 22:01:15 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2013-12-04 22:01:15 (GMT)
commit1de19ac7dab2f75a5886656b7272c6fb009ddd2d (patch)
tree15ed9a2a35dd50f51579f9a00ab457f1749660f0 /Misc
parenta5cc9d68b93bf5fc4dc2c72eee6b2c3ae01abc65 (diff)
downloadcpython-1de19ac7dab2f75a5886656b7272c6fb009ddd2d.zip
cpython-1de19ac7dab2f75a5886656b7272c6fb009ddd2d.tar.gz
cpython-1de19ac7dab2f75a5886656b7272c6fb009ddd2d.tar.bz2
#19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.
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 b2f18ad..71fce50 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #19839: Fix regression in bz2 module's handling of non-bzip2 data at
+ EOF.
+
- Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows a match when
no exception detail exists (no colon following the exception's name, or
a colon does follow but no text follows the colon).