##// END OF EJS Templates
rust-cpython: using rustext.dagop.headrevs in revlog...
Georges Racinet -
r41930:37ead13f default
parent child Browse files
Show More
@@ -1121,6 +1121,8 b' class revlog(object):'
1121 return self.index.headrevs()
1121 return self.index.headrevs()
1122 except AttributeError:
1122 except AttributeError:
1123 return self._headrevs()
1123 return self._headrevs()
1124 if rustext is not None:
1125 return rustext.dagop.headrevs(self.index, revs)
1124 return dagop.headrevs(revs, self._uncheckedparentrevs)
1126 return dagop.headrevs(revs, self._uncheckedparentrevs)
1125
1127
1126 def computephases(self, roots):
1128 def computephases(self, roots):
General Comments 0
You need to be logged in to leave comments. Login now