mercurial/context.py
changeset 2566 d8560b458f76
parent 2563 482c524dd9ab
child 2627 b779319a532b
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -119,3 +119,6 @@ class filectx(object):
         # hard for renames
         c = self._filelog.children(self._filenode)
         return [ filectx(self._repo, self._path, fileid=x) for x in c ]
+
+    def annotate(self):
+        return self._filelog.annotate(self._filenode)