Added filelist attribute to ZipFile (#1798)

This commit is contained in:
Salvo 'LtWorf' Tomaselli
2018-01-02 19:18:03 +01:00
committed by Matthias Kramm
parent 4ee508a032
commit c8c4a8f208

View File

@@ -21,6 +21,7 @@ class LargeZipFile(Exception): ...
class ZipFile:
debug = ... # type: int
comment = ... # type: bytes
filelist = ... # type: List[ZipInfo]
def __init__(self, file: Union[str, IO[bytes]], mode: str = ..., compression: int = ...,
allowZip64: bool = ...) -> None: ...
def __enter__(self) -> ZipFile: ...