diff options
author | Zackery Spytz <zspytz@gmail.com> | 2018-06-27 18:04:51 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-06-27 18:04:51 (GMT) |
commit | d2cbfffc842b00b5257aa1c25dbcdeb456b6a249 (patch) | |
tree | 9375c06924d055f372d4ecbce2e431200ef44576 /Doc/library/zlib.rst | |
parent | fbd7172325e6ce55b6d5d3d7603e4c1c8a219cb8 (diff) | |
download | cpython-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 'Doc/library/zlib.rst')
-rw-r--r-- | Doc/library/zlib.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst index 8a531c9..aa61278 100644 --- a/Doc/library/zlib.rst +++ b/Doc/library/zlib.rst @@ -231,6 +231,11 @@ Compression objects support the following methods: compress a set of data that share a common initial prefix. +.. versionchanged:: 3.8 + Added :func:`copy.copy` and :func:`copy.deepcopy` support to compression + objects. + + Decompression objects support the following methods and attributes: @@ -298,6 +303,11 @@ Decompression objects support the following methods and attributes: seeks into the stream at a future point. +.. versionchanged:: 3.8 + Added :func:`copy.copy` and :func:`copy.deepcopy` support to decompression + objects. + + Information about the version of the zlib library in use is available through the following constants: |