Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/templatefuncs.py @ 49004:f254fc73d956
global: bulk replace simple pycompat.iteritems(x) with x.items()
pycompat.iteritems() just calls .items().
This commit applies a regular expression search and replace to convert
simple instances of pycompat.iteritems() with .items(). There are still
a handful of calls to pycompat.iteritems() remaining. But these all have
more complicated expressions that I wasn't comfortable performing an
automated replace on. In addition, some simple replacements were withheld
because they broke pytype. These will be handled by their own changesets.
Differential Revision: https://phab.mercurial-scm.org/D12318
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Thu, 03 Mar 2022 18:28:30 -0800 |
parents | 6000f5b25c9b |
children | 278030cc9353 |
comparison
equal
deleted
inserted
replaced
49003:a0674e916fb6 | 49004:f254fc73d956 |
---|---|
908 return tokens[num] | 908 return tokens[num] |
909 | 909 |
910 | 910 |
911 def loadfunction(ui, extname, registrarobj): | 911 def loadfunction(ui, extname, registrarobj): |
912 """Load template function from specified registrarobj""" | 912 """Load template function from specified registrarobj""" |
913 for name, func in pycompat.iteritems(registrarobj._table): | 913 for name, func in registrarobj._table.items(): |
914 funcs[name] = func | 914 funcs[name] = func |
915 | 915 |
916 | 916 |
917 # tell hggettext to extract docstrings from these functions: | 917 # tell hggettext to extract docstrings from these functions: |
918 i18nfunctions = funcs.values() | 918 i18nfunctions = funcs.values() |