keepalive: remove pycompat.iteritems()
authorGregory Szorc <gregory.szorc@gmail.com>
Mon, 21 Feb 2022 11:10:27 -0700
changeset 48924 dea766fca7e1
parent 48923 428177ad70b0
child 48925 1414b65303d5
keepalive: remove pycompat.iteritems() Differential Revision: https://phab.mercurial-scm.org/D12329
mercurial/keepalive.py
--- a/mercurial/keepalive.py	Mon Feb 21 11:10:08 2022 -0700
+++ b/mercurial/keepalive.py	Mon Feb 21 11:10:27 2022 -0700
@@ -193,7 +193,7 @@
 
     def close_all(self):
         """close all open connections"""
-        for host, conns in pycompat.iteritems(self._cm.get_all()):
+        for host, conns in self._cm.get_all().items():
             for h in conns:
                 self._cm.remove(h)
                 h.close()