Lines Matching refs:fullpath
245 fullpath = _bootstrap_external._path_join(path, '__init__.py')
247 fullpath = f'{path}.py'
250 toc_entry = self._files[fullpath]
295 fullpath = _bootstrap_external._path_join(self.archive, path)
296 mod.__path__ = [fullpath]
373 fullpath = path + suffix
374 if fullpath in self._files:
641 def _unmarshal_code(self, pathname, fullpath, fullname, data):
644 'path': fullpath,
654 source_bytes = _get_pyc_source(self, fullpath)
665 _get_mtime_and_size_of_source(self, fullpath)
750 fullpath = path + suffix
751 _bootstrap._verbose_message('trying {}{}{}', self.archive, path_sep, fullpath, verbosity=2)
753 toc_entry = self._files[fullpath]
762 code = _unmarshal_code(self, modpath, fullpath, fullname, data)