# HG changeset patch # User Kyle Lippincott # Date 1550805095 28800 # Node ID cd7059d17cb2d56d5231830b9f6d7c9a4ce8ae97 # Parent 0b2361c2c493bc467f1dfbb369e9960cf2ba4b16 context: use includematcher when checking dir/file conflicts This is for performance; patternmatcher can't easily interpret its results to make visitchildrenset be the "optimal" set of paths to inspect, but includematcher can. Since there aren't any special patterns being used here, I believe that the two matchers are equivalent. Differential Revision: https://phab.mercurial-scm.org/D5999 diff -r 0b2361c2c493 -r cd7059d17cb2 mercurial/context.py --- a/mercurial/context.py Thu Feb 21 19:11:28 2019 -0800 +++ b/mercurial/context.py Thu Feb 21 19:11:35 2019 -0800 @@ -1951,7 +1951,7 @@ # Test the other direction -- that this path from p2 isn't a directory # in p1 (test that p1 doesn't have any paths matching `path/*`). - match = self.match(pats=[path + '/'], default=b'path') + match = self.match(include=[path + '/'], default=b'path') matches = self.p1().manifest().matches(match) mfiles = matches.keys() if len(mfiles) > 0: