[PATCH 29 of 35 V2] context: move _dirs from changectx

Sean Farley sean.michael.farley at gmail.com
Wed Aug 7 18:51:43 CDT 2013


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1375746103 18000
#      Mon Aug 05 18:41:43 2013 -0500
# Node ID 8994c72ce4de432b1e4ffef16fd2639981f03c20
# Parent  a2afb3514ab7b47e63ceb81709c86839d1997271
context: move _dirs from changectx

diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -136,10 +136,14 @@
             ctx2 = self._repo[ctx2]
         diffopts = patch.diffopts(self._repo.ui, opts)
         return patch.diff(self._repo, ctx2.node(), self.node(),
                           match=match, opts=diffopts)
 
+    @propertycache
+    def _dirs(self):
+        return scmutil.dirs(self._manifest)
+
 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=''):
@@ -397,14 +401,10 @@
                 # specified pattern is a directory
                 continue
             if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
                 yield fn
 
-    @propertycache
-    def _dirs(self):
-        return scmutil.dirs(self._manifest)
-
     def dirs(self):
         return self._dirs
 
     def dirty(self):
         return False


More information about the Mercurial-devel mailing list