revlog: make isdescendantrev(a, b) check if a < b
authorMartin von Zweigbergk <martinvonz@google.com>
Wed, 11 Jul 2018 16:37:30 -0700
changeset 38665 6afa928033bd
parent 38664 160da69ba1bf
child 38666 a06b2b032557
revlog: make isdescendantrev(a, b) check if a < b This check was taken from rebase.py. It seems to make sense to move it here, but I haven't done any measurements. Differential Revision: https://phab.mercurial-scm.org/D3930
mercurial/revlog.py
--- a/mercurial/revlog.py	Wed Jul 11 16:21:41 2018 -0700
+++ b/mercurial/revlog.py	Wed Jul 11 16:37:30 2018 -0700
@@ -1656,6 +1656,8 @@
             return True
         elif a == b:
             return True
+        elif a < b:
+            return False
         return b in self._commonancestorsheads(a, b)
 
     def commonancestorsheads(self, a, b):