Issue 1088206: zlib decompressobj documentation typo (original) (raw)
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 ...