Lines Matching refs:names
54 error = BadZipfile = BadZipFile # Pre-3.2 compatibility names
76 # the struct module. The names and structures of headers/records are those used
378 # names are used as tricks by viruses in archives.
1408 # UTF-8 file names extension
1451 """Return a list of file names in the archive."""
2241 ZipFile mix-in to ensure names are sanitized.
2250 Ensure a relative path with posix separators and no dot names.
2304 def _implied_dirs(names):
2305 parents = itertools.chain.from_iterable(map(_parents, names))
2307 return _dedupe(_difference(as_dirs, names))
2310 names = super(CompleteDirs, self).namelist()
2311 return names + list(self._implied_dirs(names))
2321 names = self._name_set()
2323 dir_match = name not in names and dirname in names
2583 help='Specify encoding of member names for -l, -e and -t')