本文整理汇总了Python中core.module.Module.print_result方法的典型用法代码示例。如果您正苦于以下问题:Python Module.print_result方法的具体用法?Python Module.print_result怎么用?Python Module.print_result使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core.module.Module
的用法示例。
在下文中一共展示了Module.print_result方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print_result
# 需要导入模块: from core.module import Module [as 别名]
# 或者: from core.module.Module import print_result [as 别名]
def print_result(self, result):
if result == None:
log.warn('%s %s' % (messages.module_sql_console.no_data,
messages.module_sql_console.check_credentials)
)
elif not result:
log.warn(messages.module_sql_console.no_data)
else:
Module.print_result(self, result)
示例2: print_result
# 需要导入模块: from core.module import Module [as 别名]
# 或者: from core.module.Module import print_result [as 别名]
def print_result(self, result):
if result['error']:
log.info(result['error'])
if result['result']:
Module.print_result(self, result['result'])
elif not result['error']:
log.warn('%s %s' % (messages.module_sql_console.no_data,
messages.module_sql_console.check_credentials)
)
command_last_chars = utils.prettify.shorten(
self.args['query'].rstrip(),
keep_trailer = 10
)
if (command_last_chars and command_last_chars[-1] != ';'):
log.warn(messages.module_sql_console.missing_sql_trailer_s % command_last_chars)
示例3: print_result
# 需要导入模块: from core.module import Module [as 别名]
# 或者: from core.module.Module import print_result [as 别名]
def print_result(self, result):
if not result: return
result_verbose = {}
for path, perms in result.items():
if len(perms) == 1 and perms[0] == 'e':
result_verbose[path] = 'exists'
else:
verbose_string = ' '.join([
'writable' if 'w' in perms else '',
'readable' if 'r' in perms else '',
'executable' if 'x' in perms else ''
])
# Re split to delete multiple whitespaces
result_verbose[path] = ' '.join(
verbose_string.strip().split()
)
return Module.print_result(self, result_verbose)