예제 #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