Return a list of file names in the archive.
(self)
| 1455 | end_offset = zinfo.header_offset |
| 1456 | |
| 1457 | def namelist(self): |
| 1458 | """Return a list of file names in the archive.""" |
| 1459 | return [data.filename for data in self.filelist] |
| 1460 | |
| 1461 | def infolist(self): |
| 1462 | """Return a list of class ZipInfo instances for files in the |
no outgoing calls