# HG changeset patch # User Martin von Zweigbergk # Date 1495214228 25200 # Node ID 9f781f43f2cecc3a39b63a2404e93c601c54cfbf # Parent a04bc55201c3a37bd2999a5c83de251948560540 match: make basematcher._files a @propertycache This will make it easier to override in subclasses (otherwise the function @propertycache object will be replaced by the super-constructor call).. diff -r a04bc55201c3 -r 9f781f43f2ce mercurial/match.py --- a/mercurial/match.py Wed May 17 23:45:13 2017 -0700 +++ b/mercurial/match.py Fri May 19 10:17:08 2017 -0700 @@ -209,7 +209,6 @@ self._cwd = cwd if badfn is not None: self.bad = badfn - self._files = [] # exact files and roots of patterns self.matchfn = lambda f: False def __call__(self, fn): @@ -247,6 +246,10 @@ Otherwise it is relative to the root of the repo.''' return self.rel(f) + @propertycache + def _files(self): + return [] + def files(self): '''Explicitly listed files or patterns or roots: if no patterns or .always(): empty list,