comparison mercurial/keepalive.py @ 43106:d783f945a701

py3: finish porting iteritems() to pycompat and remove source transformer This commit finishes porting .iteritems() to pycompat.iteritems() for the mercurial package. The translation of .iteritems() to .items() was the last conversion performed by the source transformer. With the porting to pycompat complete, we no longer have a need for the source transformer. So the source transformer has been removed. Good riddance! The code base is now compatible with Python 2 and Python 3. For the record, as the person who introduced the source transformer, it brings me joy to delete it. It accomplished its goal to facilitate a port to Python 3 without overly burdening people on some painful low-level differences between Python 2 and 3. It is unfortunate we still have to wallpaper over many differences with the pycompat shim. But it is what it is. Differential Revision: https://phab.mercurial-scm.org/D7015
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 07 Oct 2019 00:04:04 -0400
parents c95b2f40db7c
children 8ff1ecfadcd1
comparison
equal deleted inserted replaced
43105:649d3ac37a12 43106:d783f945a701
192 self._cm.remove(h) 192 self._cm.remove(h)
193 h.close() 193 h.close()
194 194
195 def close_all(self): 195 def close_all(self):
196 """close all open connections""" 196 """close all open connections"""
197 for host, conns in self._cm.get_all().iteritems(): 197 for host, conns in pycompat.iteritems(self._cm.get_all()):
198 for h in conns: 198 for h in conns:
199 self._cm.remove(h) 199 self._cm.remove(h)
200 h.close() 200 h.close()
201 201
202 def _request_closed(self, request, host, connection): 202 def _request_closed(self, request, host, connection):