comparison mercurial/similar.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 687b865b95ad
children 89a2afe31e82
comparison
equal deleted inserted replaced
43105:649d3ac37a12 43106:d783f945a701
6 # GNU General Public License version 2 or any later version. 6 # GNU General Public License version 2 or any later version.
7 7
8 from __future__ import absolute_import 8 from __future__ import absolute_import
9 9
10 from .i18n import _ 10 from .i18n import _
11 from . import mdiff 11 from . import (
12 mdiff,
13 pycompat,
14 )
12 15
13 16
14 def _findexactmatches(repo, added, removed): 17 def _findexactmatches(repo, added, removed):
15 '''find renamed files that have no changes 18 '''find renamed files that have no changes
16 19
93 myscore = _score(a, data) 96 myscore = _score(a, data)
94 if myscore > bestscore: 97 if myscore > bestscore:
95 copies[a] = (r, myscore) 98 copies[a] = (r, myscore)
96 progress.complete() 99 progress.complete()
97 100
98 for dest, v in copies.iteritems(): 101 for dest, v in pycompat.iteritems(copies):
99 source, bscore = v 102 source, bscore = v
100 yield source, dest, bscore 103 yield source, dest, bscore
101 104
102 105
103 def _dropempty(fctxs): 106 def _dropempty(fctxs):