diff -r 40f0c0748cfc -r 717c692fa449 mercurial/revlog.py --- a/mercurial/revlog.py Mon Dec 17 15:08:06 2012 -0800 +++ b/mercurial/revlog.py Mon Dec 17 15:08:37 2012 -0800 @@ -371,11 +371,6 @@ seen.add(parent) yield parent - def incancestors(self, revs, stoprev=0): - """Identical to ancestors() except it also generates the - revisions, 'revs'""" - return self.ancestors(revs, stoprev, inclusive=True) - def descendants(self, revs): """Generate the descendants of 'revs' in revision order.