summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2013-12-04 22:29:51 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2013-12-04 22:29:51 (GMT)
commitae02d07bc2939f2f9e7a82543be3bb832ad8b29d (patch)
tree07ebcbf83fc7170a47c95677d76e7febe5837091 /Misc
parentf9c54944dfe2f2594748a0a92938e4765c0c5900 (diff)
parent9c72ebc96be44c4ff66832cbe5e131065ae9d95d (diff)
downloadcpython-ae02d07bc2939f2f9e7a82543be3bb832ad8b29d.zip
cpython-ae02d07bc2939f2f9e7a82543be3bb832ad8b29d.tar.gz
cpython-ae02d07bc2939f2f9e7a82543be3bb832ad8b29d.tar.bz2
Closes #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.
Also fix an analogous bug (not a regression) in the lzma module.
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 d767b2c..cb16d2c 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, and analogous bug in lzma module.
+
- 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).