summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2013-01-02 23:10:47 +0100
committerNadeem Vawda <nadeem.vawda@gmail.com>2013-01-02 23:10:47 +0100
commit791e464f75bec3829c5e9351b728bb78b0ec0719 (patch)
tree023ab8761c373d76def7e93af4edd64859f656f2
parent57cb81d16180bd896b47129585c838096d035f16 (diff)
downloadcpython-git-791e464f75bec3829c5e9351b728bb78b0ec0719.tar.gz
Correction: issue #16828 also affects BZ2Compressor.compress().
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index eff20ee93e..5a9e1aea35 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,8 +123,8 @@ Core and Builtins
Library
-------
-- Issue #16828: Fix error incorrectly raised by bz2.compress(''). Initial patch
- by Martin Packman.
+- Issue #16828: Fix error incorrectly raised by bz2.compress(b'') and
+ bz2.BZ2Compressor.compress(b''). Initial patch by Martin Packman.
- Issue #16541: tk_setPalette() now works with keyword arguments.