MCPcopy Index your code
hub / github.com/python/cpython / infolist

Method infolist

Lib/zipfile/__init__.py:1612–1615  ·  view source on GitHub ↗

Return a list of class ZipInfo instances for files in the archive.

(self)

Source from the content-addressed store, hash-verified

1610 return [data.filename for data in self.filelist]
1611
1612 def infolist(self):
1613 """Return a list of class ZipInfo instances for files in the
1614 archive."""
1615 return self.filelist
1616
1617 def printdir(self, file=None):
1618 """Print a table of contents for the zip file."""

Callers 14

_unpack_zipfileFunction · 0.95
test_force_zip64Method · 0.95
build_alpharep_fixtureFunction · 0.95
zip_testMethod · 0.80
zip_testMethod · 0.80

Calls

no outgoing calls

Tested by 13

test_force_zip64Method · 0.76
build_alpharep_fixtureFunction · 0.76
zip_testMethod · 0.64
zip_testMethod · 0.64
test_extract_commandMethod · 0.64