示例#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
 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