summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2018-06-27 18:04:51 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-06-27 18:04:51 (GMT)
commitd2cbfffc842b00b5257aa1c25dbcdeb456b6a249 (patch)
tree9375c06924d055f372d4ecbce2e431200ef44576 /Misc/NEWS.d/next
parentfbd7172325e6ce55b6d5d3d7603e4c1c8a219cb8 (diff)
downloadcpython-d2cbfffc842b00b5257aa1c25dbcdeb456b6a249.zip
cpython-d2cbfffc842b00b5257aa1c25dbcdeb456b6a249.tar.gz
cpython-d2cbfffc842b00b5257aa1c25dbcdeb456b6a249.tar.bz2
bpo-25007: Add copy protocol support to zlib compressors and decompressors (GH-7940)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2018-06-26-16-55-59.bpo-25007.6LQWOF.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-26-16-55-59.bpo-25007.6LQWOF.rst b/Misc/NEWS.d/next/Library/2018-06-26-16-55-59.bpo-25007.6LQWOF.rst
new file mode 100644
index 0000000..b7d832b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-06-26-16-55-59.bpo-25007.6LQWOF.rst
@@ -0,0 +1,2 @@
+Add :func:`copy.copy` and :func:`copy.deepcopy` support to zlib compressors
+and decompressors. Patch by Zackery Spytz.