Comments
Patch
@@ -140,10 +140,13 @@
@propertycache
def _dirs(self):
return scmutil.dirs(self._manifest)
+ def dirs(self):
+ return self._dirs
+
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=''):
@@ -395,13 +398,10 @@
# specified pattern is a directory
continue
if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
yield fn
- def dirs(self):
- return self._dirs
-
def dirty(self):
return False
class filectx(object):
"""A filecontext object makes access to data related to a particular