Lines Matching refs:path_sep
30 path_sep = _bootstrap_external.path_sep
70 path = path.replace(alt_path_sep, path_sep)
101 self.prefix += path_sep
139 return None, [f'{self.archive}{path_sep}{modpath}']
181 path = f'{self.archive}{path_sep}{modpath}'
206 pathname = pathname.replace(alt_path_sep, path_sep)
209 if pathname.startswith(self.archive + path_sep):
210 key = pathname[len(self.archive + path_sep):]
340 return f'<zipimporter object "{self.archive}{path_sep}{self.prefix}">'
347 # '/' is replaced by path_sep there.
349 (path_sep + '__init__.pyc', True, True),
350 (path_sep + '__init__.py', False, True),
365 dirpath = path + path_sep
399 # Directories can be recognized by the trailing path_sep in the name,
516 name = name.replace('/', path_sep)
751 _bootstrap._verbose_message('trying {}{}{}', self.archive, path_sep, fullpath, verbosity=2)