本文整理匯總了Python中maybe.T.cyan方法的典型用法代碼示例。如果您正苦於以下問題:Python T.cyan方法的具體用法?Python T.cyan怎麽用?Python T.cyan使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類maybe.T
的用法示例。
在下文中一共展示了T.cyan方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: format_open
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import cyan [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_mknod
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import cyan [as 別名]
def filter_mknod(path, type):
if exists(path):
return None, None
elif (type & S_IFCHR):
label = "create character special file"
elif (type & S_IFBLK):
label = "create block special file"
elif (type & S_IFIFO):
label = "create named pipe"
elif (type & S_IFSOCK):
label = "create socket"
else:
# mknod(2): "Zero file type is equivalent to type S_IFREG"
label = "create file"
return "%s %s" % (T.cyan(label), T.underline(path)), 0
示例3: filter_open
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import cyan [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
示例4: format_create_directory
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import cyan [as 別名]
def format_create_directory(path):
return "%s %s" % (T.cyan("create directory"), T.underline(abspath(path)))
示例5: format_create_link
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import cyan [as 別名]
def format_create_link(path_source, path_target, symbolic):
label = "create symbolic link" if symbolic else "create hard link"
return "%s from %s to %s" % (T.cyan(label), T.underline(abspath(path_source)), T.underline(abspath(path_target)))
示例6: filter_create_directory
# 需要導入模塊: from maybe import T [as 別名]
# 或者: from maybe.T import cyan [as 別名]
def filter_create_directory(path):
return "%s %s" % (T.cyan("create directory"), T.underline(path)), 0