D491: context: always pass a matcher into _matchstatus() (API)
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Wed Aug 23 16:35:27 UTC 2017
martinvonz created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REVISION SUMMARY
This just makes it a little easier to follow and removes the need to
call the superclass's method in workingctx.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D491
AFFECTED FILES
mercurial/context.py
CHANGE DETAILS
diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -103,12 +103,10 @@
return self.manifest()
def _matchstatus(self, other, match):
- """return match.always if match is none
-
- This internal method provides a way for child objects to override the
+ """This internal method provides a way for child objects to override the
match operator.
"""
- return match or matchmod.always(self._repo.root, self._repo.getcwd())
+ return match
def _buildstatus(self, other, s, match, listignored, listclean,
listunknown):
@@ -392,6 +390,7 @@
reversed = True
ctx1, ctx2 = ctx2, ctx1
+ match = match or matchmod.always(self._repo.root, self._repo.getcwd())
match = ctx2._matchstatus(ctx1, match)
r = scmutil.status([], [], [], [], [], [], [])
r = ctx2._buildstatus(ctx1, r, match, listignored, listclean,
@@ -1841,8 +1840,6 @@
If we aren't comparing against the working directory's parent, then we
just use the default match object sent to us.
"""
- superself = super(workingctx, self)
- match = superself._matchstatus(other, match)
if other != self._repo['.']:
def bad(f, msg):
# 'f' may be a directory pattern from 'match.files()',
To: martinvonz, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list