# HG changeset patch # User Gregory Szorc # Date 1645466970 25200 # Node ID fe056166b40dde82a06bd37a888f8e1bad592e43 # Parent c9774f5fa729a5b4b28d6c03a42762b8d22f11cd dirstate: remove pycompat.iteritems() Differential Revision: https://phab.mercurial-scm.org/D12327 diff -r c9774f5fa729 -r fe056166b40d mercurial/dirstate.py --- 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: