[PATCH 1 of 2] phases: add a phase and phasestr method to file context

Sean Farley sean.michael.farley at gmail.com
Wed Oct 17 10:28:20 CDT 2012


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1350425390 18000
# Node ID 072adc076e641990cf0000ece34e9545ebaaa0b3
# Parent  72c234081ae1350220132c69750f5a093902a1e7
phases: add a phase and phasestr method to file context

diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -469,10 +469,14 @@
         return self._changectx.description()
     def branch(self):
         return self._changectx.branch()
     def extra(self):
         return self._changectx.extra()
+    def phase(self):
+        return self._changectx.phase()
+    def phasestr(self):
+        return self._changectx.phasestr()
     def manifest(self):
         return self._changectx.manifest()
     def changectx(self):
         return self._changectx
 


More information about the Mercurial-devel mailing list