Add a very basic bz2 stub

This commit is contained in:
Jakub Stasiak
2016-04-12 12:55:04 +02:00
parent 68306484ae
commit 7535d41471
2 changed files with 6 additions and 0 deletions

6
stdlib/2and3/bz2.pyi Normal file
View File

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

View File