diff --git a/stdlib/2and3/zipfile.pyi b/stdlib/2and3/zipfile.pyi index f45472ee7..ce44d1ae2 100644 --- a/stdlib/2and3/zipfile.pyi +++ b/stdlib/2and3/zipfile.pyi @@ -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: ...