diff -r a0674e916fb6 -r f254fc73d956 mercurial/verify.py --- a/mercurial/verify.py Thu Mar 03 17:39:20 2022 -0800 +++ b/mercurial/verify.py Thu Mar 03 18:28:30 2022 -0800 @@ -405,11 +405,11 @@ _(b'checking'), unit=_(b'manifests'), total=len(subdirs) ) - for subdir, linkrevs in pycompat.iteritems(subdirnodes): + for subdir, linkrevs in subdirnodes.items(): subdirfilenodes = self._verifymanifest( linkrevs, subdir, storefiles, subdirprogress ) - for f, onefilenodes in pycompat.iteritems(subdirfilenodes): + for f, onefilenodes in subdirfilenodes.items(): filenodes.setdefault(f, {}).update(onefilenodes) if not dir and subdirnodes: