# HG changeset patch # User Matt Mackall # Date 1158551973 18000 # Node ID 02b22fefc01feac0efd6261a672fbcbccc0ec7cc # Parent 4d021b91cb26e7d8360ed621469ae041197177f8 changectx: add ancestor function diff -r 4d021b91cb26 -r 02b22fefc01f mercurial/context.py --- a/mercurial/context.py Sun Sep 17 22:58:11 2006 -0500 +++ b/mercurial/context.py Sun Sep 17 22:59:33 2006 -0500 @@ -67,6 +67,13 @@ for f in m: yield self.filectx(f, fileid=mf[f]) + def ancestor(self, c2): + """ + return the ancestor context of self and c2 + """ + n = self._repo.changelog.ancestor(self._node, c2._node) + return changectx(self._repo, n) + class filectx(object): """A filecontext object makes access to data related to a particular filerevision convenient."""