本文整理汇总了Python中pisi.file.File.is_compressed方法的典型用法代码示例。如果您正苦于以下问题:Python File.is_compressed方法的具体用法?Python File.is_compressed怎么用?Python File.is_compressed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pisi.file.File
的用法示例。
在下文中一共展示了File.is_compressed方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_repo_doc
# 需要导入模块: from pisi.file import File [as 别名]
# 或者: from pisi.file.File import is_compressed [as 别名]
def get_repo_doc(self, repo_name):
if not self.has_repo(repo_name):
raise RepoError(_("Repository %s does not exist.") % repo)
repo = self.get_repo(repo_name)
index_path = repo.indexuri.get_uri()
#FIXME Local index files should also be cached.
if File.is_compressed(index_path) or repo.indexuri.is_remote_file():
index = os.path.basename(index_path)
index_path = pisi.util.join_path(ctx.config.index_dir(),
repo_name, index)
if File.is_compressed(index_path):
index_path = os.path.splitext(index_path)[0]
if not os.path.exists(index_path):
ctx.ui.warning(_("%s repository needs to be updated") % repo_name)
return piksemel.newDocument("PISI")
try:
return piksemel.parse(index_path)
except Exception, e:
raise RepoError(_("Error parsing repository index information. Index file does not exist or is malformed."))