comparison mercurial/archival.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 eef9a2d67051
children d5bef33ab83c
comparison
equal deleted inserted replaced
43105:649d3ac37a12 43106:d783f945a701
72 b'txz': [b'.txz', b'.tar.xz'], 72 b'txz': [b'.txz', b'.tar.xz'],
73 } 73 }
74 74
75 75
76 def guesskind(dest): 76 def guesskind(dest):
77 for kind, extensions in exts.iteritems(): 77 for kind, extensions in pycompat.iteritems(exts):
78 if any(dest.endswith(ext) for ext in extensions): 78 if any(dest.endswith(ext) for ext in extensions):
79 return kind 79 return kind
80 return None 80 return None
81 81
82 82