diff -r 3d35e7483602 -r c17aee610bab mercurial/merge.py --- a/mercurial/merge.py Mon Feb 21 11:11:27 2022 -0700 +++ b/mercurial/merge.py Mon Feb 21 11:11:59 2022 -0700 @@ -625,9 +625,7 @@ args, msg = self._actionmapping[a][f] yield f, args, msg else: - for f, (args, msg) in pycompat.iteritems( - self._actionmapping[a] - ): + for f, (args, msg) in self._actionmapping[a].items(): yield f, args, msg def len(self, actions=None):