Skip to content

Commit

Permalink
Merge pull request #8125 from jimmo/zlib-docs
Browse files Browse the repository at this point in the history
shared-bindings/zlib: Fix docs for zlib.decompress.
  • Loading branch information
microdev1 authored Jun 28, 2023
2 parents ff18535 + d3aea0e commit 25bacc3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions shared-bindings/zlib/__init__.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 25bacc3

Please sign in to comment.