summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2012-06-21 00:13:12 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2012-06-21 00:13:12 (GMT)
commitfd8a838d582e3495004036bc82e3e6fee91fa0ba (patch)
tree1857e51ac2ee013cdd896b712014b158cd47575b /Misc
parent50b0a365ba8ea87e0a7155f7fd92de0c7dc2f941 (diff)
downloadcpython-fd8a838d582e3495004036bc82e3e6fee91fa0ba.zip
cpython-fd8a838d582e3495004036bc82e3e6fee91fa0ba.tar.gz
cpython-fd8a838d582e3495004036bc82e3e6fee91fa0ba.tar.bz2
Issue #14684: Add support for predefined compression dictionaries to the zlib module.
Original patch by Sam Rushing.
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 2f9236f..c919c69 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #14684: zlib.compressobj() and zlib.decompressobj() now support the use
+ of predefined compression dictionaries. Original patch by Sam Rushing.
+
- Fix GzipFile's handling of filenames given as bytes objects.
- Issue #14772: Return destination values from some shutil functions.