コード例 #1
0
ファイル: revlog.py プロジェクト: mortonfox/cr48
 def parseindex(self, data, inline):
     # call the C implementation to parse the index data
     index, cache = parsers.parse_index2(data, inline)
     return index, None, cache
コード例 #2
0
 def parseindex(self, data, inline):
     # call the C implementation to parse the index data
     index, cache = parsers.parse_index2(data, inline)
     return index, getattr(index, 'nodemap', None), cache
コード例 #3
0
 def parseindex(self, data, inline):
     # call the C implementation to parse the index data
     index, cache = parsers.parse_index2(data, inline)
     return index, None, cache
コード例 #4
0
ファイル: revlog.py プロジェクト: chuchiperriman/hg-stable
 def parseindex(self, data, inline):
     # call the C implementation to parse the index data
     index, cache = parsers.parse_index2(data, inline)
     return index, getattr(index, 'nodemap', None), cache