Skip to content

Commit

Permalink
Merge pull request micropython#8195 from dhalbert/8.2.x-backport-8125…
Browse files Browse the repository at this point in the history
…-zlib-docs

8.2.x backport 8125 zlib docs
  • Loading branch information
tannewt committed Jul 24, 2023
2 parents 780c64a + 90ec0f2 commit db0a74b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions shared-bindings/zlib/__init__.c
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 db0a74b

Please sign in to comment.