本文整理汇总了Python中pip._internal.cli.status_codes.ERROR属性的典型用法代码示例。如果您正苦于以下问题:Python status_codes.ERROR属性的具体用法?Python status_codes.ERROR怎么用?Python status_codes.ERROR使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类pip._internal.cli.status_codes
的用法示例。
在下文中一共展示了status_codes.ERROR属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run
# 需要导入模块: from pip._internal.cli import status_codes [as 别名]
# 或者: from pip._internal.cli.status_codes import ERROR [as 别名]
def run(self, options, args):
if not args:
logger.warning('ERROR: Please provide a package name or names.')
return ERROR
query = args
results = search_packages_info(query)
if not print_results(
results, list_files=options.files, verbose=options.verbose):
return ERROR
return SUCCESS