[PATCH 31 of 36] context: move dirty from changectx

Sean Farley sean.michael.farley at gmail.com
Wed Aug 7 13:13:31 CDT 2013


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1375746161 18000
#      Mon Aug 05 18:42:41 2013 -0500
# Node ID a5f653299fe868847e7fd22d94ecb6505bc34a93
# Parent  93fd17be01b527c69d82fe9918e908dd8475ebc3
context: move dirty from changectx

diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -143,10 +143,13 @@
         return scmutil.dirs(self._manifest)
 
     def dirs(self):
         return self._dirs
 
+    def dirty(self):
+        return False
+
 class changectx(context):
     """A changecontext object makes access to data related to a particular
     changeset convenient. It represents a read-only context already presnt in
     the repo."""
     def __init__(self, repo, changeid=''):
@@ -398,13 +401,10 @@
                 # specified pattern is a directory
                 continue
             if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
                 yield fn
 
-    def dirty(self):
-        return False
-
 class filectx(object):
     """A filecontext object makes access to data related to a particular
        filerevision convenient."""
     def __init__(self, repo, path, changeid=None, fileid=None,
                  filelog=None, changectx=None):


More information about the Mercurial-devel mailing list