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


Python difflib.restore方法代碼示例

本文整理匯總了Python中difflib.restore方法的典型用法代碼示例。如果您正苦於以下問題:Python difflib.restore方法的具體用法?Python difflib.restore怎麽用?Python difflib.restore使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在difflib的用法示例。


在下文中一共展示了difflib.restore方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: restore

# 需要導入模塊: import difflib [as 別名]
# 或者: from difflib import restore [as 別名]
def restore(which):
    restored = difflib.restore(sys.stdin.readlines(), which)
    sys.stdout.writelines(restored) 
開發者ID:aliyun,項目名稱:oss-ftp,代碼行數:5,代碼來源:ndiff.py

示例2: main

# 需要導入模塊: import difflib [as 別名]
# 或者: from difflib import restore [as 別名]
def main(args):
    import getopt
    try:
        opts, args = getopt.getopt(args, "qr:")
    except getopt.error as detail:
        return fail(str(detail))
    noisy = 1
    qseen = rseen = 0
    for opt, val in opts:
        if opt == "-q":
            qseen = 1
            noisy = 0
        elif opt == "-r":
            rseen = 1
            whichfile = val
    if qseen and rseen:
        return fail("can't specify both -q and -r")
    if rseen:
        if args:
            return fail("no args allowed with -r option")
        if whichfile in ("1", "2"):
            restore(whichfile)
            return 1
        return fail("-r value must be 1 or 2")
    if len(args) != 2:
        return fail("need 2 filename args")
    f1name, f2name = args
    if noisy:
        print('-:', f1name)
        print('+:', f2name)
    return fcompare(f1name, f2name)

# read ndiff output from stdin, and print file1 (which=='1') or
# file2 (which=='2') to stdout 
開發者ID:holzschu,項目名稱:python3_ios,代碼行數:36,代碼來源:ndiff.py


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