當前位置: 首頁>>代碼示例>>Python>>正文


Python T.red方法代碼示例

本文整理匯總了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
開發者ID:alexin-ivan,項目名稱:maybe,代碼行數:12,代碼來源:create_write_file.py

示例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
開發者ID:Lingerhk,項目名稱:maybe,代碼行數:17,代碼來源:create_write_file.py

示例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
開發者ID:alexin-ivan,項目名稱:maybe,代碼行數:8,代碼來源:create_write_file.py

示例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
開發者ID:Lingerhk,項目名稱:maybe,代碼行數:8,代碼來源:create_write_file.py

示例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
開發者ID:liuchuan98,項目名稱:maybe,代碼行數:4,代碼來源:delete.py

示例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))
開發者ID:restanrm,項目名稱:maybe,代碼行數:4,代碼來源:delete.py


注:本文中的maybe.T.red方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。