Comments
Patch
@@ -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=''):
@@ -404,13 +407,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):