mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-03-03 05:46:51 +08:00
fix syntax errors
This commit is contained in:
12
2.7/zlib.pyi
12
2.7/zlib.pyi
@@ -25,12 +25,12 @@ def decompress(data: str, wbits: int = ..., bufsize: int = ...) -> str: ...
|
||||
class compressobj:
|
||||
def __init__(level: int = ..., method: int = ..., wbits: int = ..., memlevel: int = ...,
|
||||
strategy: int = ...): ...
|
||||
def compress(self, data: str) -> str
|
||||
def copy(self) -> _Compress
|
||||
def flush(self) -> NoneType
|
||||
def compress(self, data: str) -> str: ...
|
||||
def copy(self) -> _Compress: ...
|
||||
def flush(self) -> NoneType: ...
|
||||
|
||||
class decompressobj:
|
||||
def __init__(wbits: int = ...): ...
|
||||
def copy(self) -> _Compress
|
||||
def decompress(self, data: str) -> str
|
||||
def flush(self) -> NoneType
|
||||
def copy(self) -> _Compress: ...
|
||||
def decompress(self, data: str) -> str: ...
|
||||
def flush(self) -> NoneType: ...
|
||||
|
||||
Reference in New Issue
Block a user