D492: context: remove unnecessary default values for matchers (API)
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Sun Aug 27 12:33:58 UTC 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGe43264525ce5: context: remove unnecessary default values for matchers (API) (authored by martinvonz).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D492?vs=1243&id=1328
REVISION DETAIL
https://phab.mercurial-scm.org/D492
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
@@ -1750,11 +1750,9 @@
# Even if the wlock couldn't be grabbed, clear out the list.
self._repo.clearpostdsstatus()
- def _dirstatestatus(self, match=None, ignored=False, clean=False,
- unknown=False):
+ def _dirstatestatus(self, match, ignored=False, clean=False, unknown=False):
'''Gets the status from the dirstate -- internal use only.'''
listignored, listclean, listunknown = ignored, clean, unknown
- match = match or matchmod.always(self._repo.root, self._repo.getcwd())
subrepos = []
if '.hgsub' in self:
subrepos = sorted(self.substate)
@@ -1980,14 +1978,12 @@
super(workingctx, self).__init__(repo, text, user, date, extra,
changes)
- def _dirstatestatus(self, match=None, ignored=False, clean=False,
- unknown=False):
+ def _dirstatestatus(self, match, ignored=False, clean=False, unknown=False):
"""Return matched files only in ``self._status``
Uncommitted files appear "clean" via this context, even if
they aren't actually so in the working directory.
"""
- match = match or matchmod.always(self._repo.root, self._repo.getcwd())
if clean:
clean = [f for f in self._manifest if f not in self._changedset]
else:
To: martinvonz, #hg-reviewers, dsp
Cc: dsp, mercurial-devel
More information about the Mercurial-devel
mailing list