diff -r 835a01a0cdb3 -r 54b7c79575fa mercurial/context.py --- a/mercurial/context.py Mon Jul 21 13:22:11 2008 +0200 +++ b/mercurial/context.py Mon Jul 21 13:26:42 2008 +0200 @@ -133,12 +133,6 @@ return filectx(self._repo, path, fileid=fileid, changectx=self, filelog=filelog) - def filectxs(self): - """generate a file context for each file in this changeset's - manifest""" - for f in util.sort(mf): - yield self.filectx(f, fileid=mf[f]) - def ancestor(self, c2): """ return the ancestor context of self and c2