[PATCH 12 of 19] context: add a no-op _poststatus method

Sean Farley sean.michael.farley at gmail.com
Thu May 15 16:16:30 CDT 2014


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1398189118 18000
#      Tue Apr 22 12:51:58 2014 -0500
# Node ID e0cf0d89a22645773c61396492fab4c7c43fc526
# Parent  975876989faeebc2c515bd17171b9cc7413822fd
context: add a no-op _poststatus method

diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -73,10 +73,13 @@ class basectx(object):
         return mf
 
     def _prestatus(self, other, s, match, listignored, listclean, listunknown):
         return s
 
+    def _poststatus(self, other, s, match, listignored, listclean, listunknown):
+        return s
+
     def _generatestatus(self, other, s, match, listignored, listclean,
                         listunknown):
         """generate a status with respect to another context"""
         mf1 = other._manifestmatches(match, s)
         mf2 = self._manifestmatches(match, s)


More information about the Mercurial-devel mailing list