[Request] [+ ] D11531: dirstate-item: use `tracked` instead of the `state` in context's iter
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Fri Oct 1 09:42:36 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11531
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
@@ -1551,7 +1551,7 @@
def __iter__(self):
d = self._repo.dirstate
for f in d:
- if d[f] != b'r':
+ if d.get_entry(f).tracked:
yield f
def __contains__(self, key):
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20211001/7ab67228/attachment.html>
More information about the Mercurial-patches
mailing list