##// END OF EJS Templates
rust-cpython: using MissingAncestors from Python code...
Georges Racinet -
r41283:a89b20a4 default
parent child Browse files
Show More
@@ -893,6 +893,8 b' class revlog(object):'
893 if common is None:
893 if common is None:
894 common = [nullrev]
894 common = [nullrev]
895
895
896 if rustext is not None:
897 return rustext.ancestor.MissingAncestors(self.index, common)
896 return ancestor.incrementalmissingancestors(self.parentrevs, common)
898 return ancestor.incrementalmissingancestors(self.parentrevs, common)
897
899
898 def findmissingrevs(self, common=None, heads=None):
900 def findmissingrevs(self, common=None, heads=None):
General Comments 0
You need to be logged in to leave comments. Login now