コード例 #1
0
ファイル: historypack.py プロジェクト: simpkins/eden
 def getpack(self, path):
     return revisionstore.historypack(path)
コード例 #2
0
ファイル: debugcommands.py プロジェクト: zerkella/eden
def debughistorypack(ui, paths, **opts):
    for path in paths:
        if ".hist" in path:
            path = path[:path.index(".hist")]
        hpack = revisionstore.historypack(path)
        debughistorystore(ui, hpack, **opts)