Files
typeshed/stdlib/2and3/bz2.pyi
2016-04-13 11:44:43 +02:00

7 lines
158 B
Python

# Stubs for bz2
# TODO: This stub is incomplete
def compress(data: bytes, compresslevel: int = ...) -> bytes: ...
def decompress(data: bytes) -> bytes: ...