Mercurial > public > mercurial-scm > hg-stable
diff mercurial/dirstate.py @ 49013:fe056166b40d
dirstate: remove pycompat.iteritems()
Differential Revision: https://phab.mercurial-scm.org/D12327
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 21 Feb 2022 11:09:30 -0700 |
parents | f254fc73d956 |
children | 642e31cb55f0 |
line wrap: on
line diff
--- a/mercurial/dirstate.py Mon Feb 21 11:08:53 2022 -0700 +++ b/mercurial/dirstate.py Mon Feb 21 11:09:30 2022 -0700 @@ -1308,9 +1308,9 @@ # - match.traversedir does something, because match.traversedir should # be called for every dir in the working dir full = listclean or match.traversedir is not None - for fn, st in pycompat.iteritems( - self.walk(match, subrepos, listunknown, listignored, full=full) - ): + for fn, st in self.walk( + match, subrepos, listunknown, listignored, full=full + ).items(): if not dcontains(fn): if (listignored or mexact(fn)) and dirignore(fn): if listignored: