Return a list of class ZipInfo instances for files in the archive.
(self)
| 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 |
| 1463 | archive.""" |
| 1464 | return self.filelist |
| 1465 | |
| 1466 | def printdir(self, file=None): |
| 1467 | """Print a table of contents for the zip file.""" |
no outgoing calls
no test coverage detected