# HG changeset patch # User Sean Farley # Date 2013-08-05 23:42:41 # Node ID 49b128e50e8496e295493cb38978d33fe440f364 # Parent 54817c774d38f57f9765bea1cd9e209c03fbfac4 basectx: move dirty from changectx diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -145,6 +145,9 @@ class basectx(object): def dirs(self): return self._dirs + def dirty(self): + return False + class changectx(basectx): """A changecontext object makes access to data related to a particular changeset convenient. It represents a read-only context already presnt in @@ -406,9 +409,6 @@ class changectx(basectx): 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."""