From c8c4a8f208985b209320d8119f9a9f740e7c1309 Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Tue, 2 Jan 2018 19:18:03 +0100 Subject: [PATCH] Added filelist attribute to ZipFile (#1798) --- stdlib/2and3/zipfile.pyi | 1 + 1 file changed, 1 insertion(+) 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: ...