diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-11-18 02:46:16 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-11-18 02:46:16 (GMT) |
commit | b62226ccc464b2973168b41320fdd05d2ccaf385 (patch) | |
tree | 3d218d15b301229dde070ab5eeffa4a569cb63e7 /Doc/library | |
parent | acec450bfd389242b661aa87a9351f5870dd4f57 (diff) | |
parent | 1535311edcc8d5cdc4a4615abeb6d5ea6a606c5e (diff) | |
download | cpython-b62226ccc464b2973168b41320fdd05d2ccaf385.zip cpython-b62226ccc464b2973168b41320fdd05d2ccaf385.tar.gz cpython-b62226ccc464b2973168b41320fdd05d2ccaf385.tar.bz2 |
Issue #23200: Merge zlib doc from 3.5
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/zlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst index 230fdfe..58fc31b0 100644 --- a/Doc/library/zlib.rst +++ b/Doc/library/zlib.rst @@ -230,7 +230,7 @@ Decompression objects support the following methods and attributes: :meth:`decompress` method. Some of the input data may be preserved in internal buffers for later processing. - If the optional parameter *max_length* is supplied then the return value will be + If the optional parameter *max_length* is non-zero then the return value will be no longer than *max_length*. This may mean that not all of the compressed input can be processed; and unconsumed data will be stored in the attribute :attr:`unconsumed_tail`. This bytestring must be passed to a subsequent call to |