debugcommands: remove pycompat.iteritems()
authorGregory Szorc <gregory.szorc@gmail.com>
Mon, 21 Feb 2022 11:08:53 -0700
changeset 48921 c9774f5fa729
parent 48920 b4ab4fd23199
child 48922 fe056166b40d
debugcommands: remove pycompat.iteritems() Differential Revision: https://phab.mercurial-scm.org/D12326
mercurial/debugcommands.py
--- a/mercurial/debugcommands.py	Tue Mar 01 20:47:37 2022 -0800
+++ b/mercurial/debugcommands.py	Mon Feb 21 11:08:53 2022 -0700
@@ -2384,7 +2384,7 @@
     fm_files.end()
 
     fm_extras = fm.nested(b'extras')
-    for f, d in sorted(pycompat.iteritems(ms.allextras())):
+    for f, d in sorted(ms.allextras().items()):
         if f in ms:
             # If file is in mergestate, we have already processed it's extras
             continue
@@ -2888,7 +2888,7 @@
             ui.status(pycompat.bytestr(r) + b'\n')
             return not r
         else:
-            for k, v in sorted(pycompat.iteritems(target.listkeys(namespace))):
+            for k, v in sorted(target.listkeys(namespace).items()):
                 ui.write(
                     b"%s\t%s\n"
                     % (stringutil.escapestr(k), stringutil.escapestr(v))