Lines Matching defs:list
1172 that contains a list of keyword, value pairs. The values
1533 next.sparse = list(zip(offsets, numbytes))
1539 next.sparse = list(zip(sparse[::2], sparse[1::2]))
1555 next.sparse = list(zip(sparse[::2], sparse[1::2]))
1726 self.members = [] # list of members as TarInfo objects
2011 """Return the members of the archive as a list of TarInfo objects. The
2012 list has the same order as the members in the archive.
2015 if not self._loaded: # if we want to obtain a list of
2021 """Return the members of the archive as a list of their names. It has
2022 the same order as the list returned by getmembers().
2125 def list(self, verbose=True, *, members=None):
2129 list returned by getmembers().
2263 list returned by getmembers(). If `numeric_owner` is True, only
2675 # Limit the member search list up to tarinfo.
2834 group.add_argument('-l', '--list', metavar='<tarfile>',
2861 elif args.list is not None:
2862 src = args.list
2865 tf.list(verbose=args.verbose)