Lines Matching refs:name
57 The 'archive' attribute of zipimporter objects contains the name of the
113 fully qualified (dotted) module name. It returns the zipimporter
115 full path name if it's possibly a portion of a namespace package,
150 fully qualified (dotted) module name. It returns the zipimporter
182 spec = _bootstrap.ModuleSpec(name=fullname, loader=None,
241 raise ZipImportError(f"can't find module {fullname!r}", name=fullname)
266 raise ZipImportError(f"can't find module {fullname!r}", name=fullname)
275 fully qualified (dotted) module name. It returns the imported
355 # Given a module name, return the potential file path in the
363 # of a namespace package. We test by seeing if the name, with an
399 # Directories can be recognized by the trailing path_sep in the name,
492 name = fp.read(name_size)
495 if len(name) != name_size:
508 name = name.decode()
512 name = name.decode('ascii')
514 name = name.decode('latin1').translate(cp437_table)
516 name = name.replace('/', path_sep)
517 path = _bootstrap_external._path_join(archive, name)
519 files[name] = t
643 'name': fullname,
776 raise ZipImportError(msg, name=fullname) from import_error
778 raise ZipImportError(f"can't find module {fullname!r}", name=fullname)