shared-bindings/zlib: Fix docs for zlib.decompress.
The docs say the method is called `zlib_decompress` but should be just `decompress`. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
parent
c116aa004c
commit
d3aea0e15a
|
@ -48,9 +48,7 @@
|
|||
//| (commonly used in zlib library and gzip archiver). Compression is not yet implemented."""
|
||||
//|
|
||||
|
||||
//| def zlib_decompress(
|
||||
//| data: bytes, wbits: Optional[int] = 0, bufsize: Optional[int] = 0
|
||||
//| ) -> bytes:
|
||||
//| def decompress(data: bytes, wbits: Optional[int] = 0, bufsize: Optional[int] = 0) -> bytes:
|
||||
//| """Return decompressed *data* as bytes. *wbits* is DEFLATE dictionary window
|
||||
//| size used during compression (8-15, the dictionary size is power of 2 of
|
||||
//| that value). Additionally, if value is positive, *data* is assumed to be
|
||||
|
|
Loading…
Reference in New Issue