This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: zlib decompressobj documentation typo
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: rhettinger, scott_daniels
Priority: normal Keywords:

Created on 2004-12-20 04:48 by scott_daniels, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg23783 - (view) Author: Scott David Daniels (scott_daniels) * Date: 2004-12-20 04:48
In both Python 2.3.4 and 2.4 Python Library 
Reference    
    7.15 zlib -- Compression compatible with gzip 
The documentation that describes zlib.decompressobj, 
the method description for the decompress message 
looks like:

    decompress( string) 
        [max_length] Decompress string, returning a ...

when it should be:

    decompress( string [, max_length]) 
        Decompress string, returning a ...

msg23784 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2004-12-20 06:09
Logged In: YES 
user_id=80475

Fixed.

Thanks for the report.
History
Date User Action Args
2022-04-11 14:56:08adminsetgithub: 41348
2004-12-20 04:48:40scott_danielscreate