本文整理汇总了Python中maybe.T.red方法的典型用法代码示例。如果您正苦于以下问题:Python T.red方法的具体用法?Python T.red怎么用?Python T.red使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类maybe.T
的用法示例。
在下文中一共展示了T.red方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: format_open
# 需要导入模块: from maybe import T [as 别名]
# 或者: from maybe.T import red [as 别名]
def format_open(path, flags):
path = abspath(path)
if path in allowed_files:
return None
elif (flags & O_CREAT) and not exists(path):
return "%s %s" % (T.cyan("create file"), T.underline(path))
elif (flags & O_TRUNC) and exists(path):
return "%s %s" % (T.red("truncate file"), T.underline(path))
else:
return None
示例2: filter_open
# 需要导入模块: from maybe import T [as 别名]
# 或者: from maybe.T import red [as 别名]
def filter_open(process, path, flags):
if path in allowed_files:
return None, None
if (flags & O_CREAT) and not exists(path):
operation = "%s %s" % (T.cyan("create file"), T.underline(path))
elif (flags & O_TRUNC) and exists(path):
operation = "%s %s" % (T.red("truncate file"), T.underline(path))
else:
operation = None
if (flags & O_WRONLY) or (flags & O_RDWR) or (flags & O_APPEND) or (operation is not None):
# File might be written to later, so we need to track the file descriptor
return_value = process.register_path(path)
else:
return_value = None
return operation, return_value
示例3: format_write
# 需要导入模块: from maybe import T [as 别名]
# 或者: from maybe.T import red [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 red [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
示例5: filter_delete
# 需要导入模块: from maybe import T [as 别名]
# 或者: from maybe.T import red [as 别名]
def filter_delete(path):
return "%s %s" % (T.red("delete"), T.underline(path)), 0
示例6: format_delete
# 需要导入模块: from maybe import T [as 别名]
# 或者: from maybe.T import red [as 别名]
def format_delete(path):
return "%s %s" % (T.red("delete"), T.underline(path))