Skip to content
Snippets Groups Projects
Commit 3a7d9c0c authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

ancestor.lazyancestors: take parentrevs function rather than changelog

Principle of least privilege, and it also brings this in line with
missingancestors.
parent bd296bb4
No related branches found
No related tags found
No related merge requests found
......@@ -216,7 +216,7 @@
return missing
class lazyancestors(object):
def __init__(self, cl, revs, stoprev=0, inclusive=False):
def __init__(self, pfunc, revs, stoprev=0, inclusive=False):
"""Create a new object generating ancestors for the given revs. Does
not generate revs lower than stoprev.
......@@ -228,7 +228,7 @@
than stoprev will not be generated.
Result does not include the null revision."""
self._parentrevs = cl.parentrevs
self._parentrevs = pfunc
self._initrevs = revs
self._stoprev = stoprev
self._inclusive = inclusive
......
......@@ -407,7 +407,7 @@
See the documentation for ancestor.lazyancestors for more details."""
return ancestor.lazyancestors(self, revs, stoprev=stoprev,
return ancestor.lazyancestors(self.parentrevs, revs, stoprev=stoprev,
inclusive=inclusive)
def descendants(self, revs):
......
......@@ -34,9 +34,6 @@
13: [8]}
pfunc = graph.get
class mockchangelog(object):
parentrevs = graph.get
def runmissingancestors(revs, bases):
print "%% ancestors of %s and not of %s" % (revs, bases)
print ancestor.missingancestors(revs, bases, pfunc)
......@@ -76,7 +73,7 @@
def genlazyancestors(revs, stoprev=0, inclusive=False):
print ("%% lazy ancestor set for %s, stoprev = %s, inclusive = %s" %
(revs, stoprev, inclusive))
return ancestor.lazyancestors(mockchangelog, revs, stoprev=stoprev,
return ancestor.lazyancestors(graph.get, revs, stoprev=stoprev,
inclusive=inclusive)
def printlazyancestors(s, l):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment