本文整理匯總了Python中maybe.T.bold方法的典型用法代碼示例。如果您正苦於以下問題:Python T.bold方法的具體用法?Python T.bold怎麽用?Python T.bold使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類maybe.T
的用法示例。
在下文中一共展示了T.bold方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: filter_change_owner
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import bold [as 別名]
def filter_change_owner(path, owner, group):
if owner == -1:
label = "change group"
owner = getgrgid(group)[0]
elif group == -1:
label = "change owner"
owner = getpwuid(owner)[0]
else:
label = "change owner"
owner = getpwuid(owner)[0] + ":" + getgrgid(group)[0]
return "%s of %s to %s" % (T.yellow(label), T.underline(path), T.bold(owner)), 0
示例2: filter_change_permissions
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import bold [as 別名]
def filter_change_permissions(path, permissions):
return "%s of %s to %s" % (T.yellow("change permissions"), T.underline(path),
T.bold(format_permissions(permissions))), 0
示例3: format_write
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import bold [as 別名]
def format_write(file_descriptor, byte_count):
if file_descriptor in file_descriptors:
path = file_descriptors[file_descriptor]
return "%s %s to %s" % (T.red("write"), T.bold("%d bytes" % byte_count), T.underline(path))
else:
return None
示例4: filter_write
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import bold [as 別名]
def filter_write(process, file_descriptor, byte_count):
if process.is_tracked_descriptor(file_descriptor):
path = process.descriptor_path(file_descriptor)
return "%s %s to %s" % (T.red("write"), T.bold("%d bytes" % byte_count), T.underline(path)), byte_count
else:
return None, None