commitablectx: move extra from workingctx
authorSean Farley <sean.michael.farley@gmail.com>
Wed, 14 Aug 2013 16:23:28 -0500
changeset 19689 8dbb66f339f3
parent 19688 21e1068109a7
child 19690 65ff9fd67d8d
commitablectx: move extra from workingctx
mercurial/context.py
--- a/mercurial/context.py	Wed Aug 14 16:23:16 2013 -0500
+++ b/mercurial/context.py	Wed Aug 14 16:23:28 2013 -0500
@@ -991,6 +991,8 @@
         return encoding.tolocal(self._extra['branch'])
     def closesbranch(self):
         return 'close' in self._extra
+    def extra(self):
+        return self._extra
 
 class workingctx(commitablectx):
     """A workingctx object makes access to data related to
@@ -1018,9 +1020,6 @@
             p = p[:-1]
         return [changectx(self._repo, x) for x in p]
 
-    def extra(self):
-        return self._extra
-
     def tags(self):
         t = []
         for p in self.parents():