Lines Matching refs:zipimporter
4 - zipimporter: a class; its constructor takes a path to a Zip archive.
5 - ZipImportError: exception raised by zipimporter objects. It's a
8 info dicts, as used in zipimporter._files.
27 __all__ = ['ZipImportError', 'zipimporter']
46 class zipimporter(_bootstrap_external._LoaderBasics):
47 """zipimporter(archivepath) -> zipimporter object
49 Create a new zipimporter instance. 'archivepath' must be a path to
57 The 'archive' attribute of zipimporter objects contains the name of the
113 fully qualified (dotted) module name. It returns the zipimporter
121 _warnings.warn("zipimporter.find_loader() is deprecated and slated for "
150 fully qualified (dotted) module name. It returns the zipimporter
157 _warnings.warn("zipimporter.find_module() is deprecated and slated for "
280 msg = ("zipimport.zipimporter.load_module() is deprecated and slated for "
340 return f'<zipimporter object "{self.archive}{path_sep}{self.prefix}">'