diff mercurial/context.py @ 19597:837bc86370f0

basefilectx: move extra from filectx
author Sean Farley <sean.michael.farley@gmail.com>
date Sun, 11 Aug 2013 22:54:39 -0500
parents 9bc3d0dea371
children e8ef893a3150
line wrap: on
line diff
--- a/mercurial/context.py	Sun Aug 11 22:54:31 2013 -0500
+++ b/mercurial/context.py	Sun Aug 11 22:54:39 2013 -0500
@@ -503,6 +503,8 @@
         return self._changectx.description()
     def branch(self):
         return self._changectx.branch()
+    def extra(self):
+        return self._changectx.extra()
 
 class filectx(basefilectx):
     """A filecontext object makes access to data related to a particular
@@ -559,8 +561,6 @@
         return filectx(self._repo, self._path, fileid=fileid,
                        filelog=self._filelog)
 
-    def extra(self):
-        return self._changectx.extra()
     def phase(self):
         return self._changectx.phase()
     def phasestr(self):