--- a/mercurial/exthelper.py Thu Mar 03 17:39:20 2022 -0800
+++ b/mercurial/exthelper.py Thu Mar 03 18:28:30 2022 -0800
@@ -14,7 +14,6 @@
commands,
error,
extensions,
- pycompat,
registrar,
)
@@ -114,7 +113,7 @@
self._extcommandwrappers.extend(other._extcommandwrappers)
self._functionwrappers.extend(other._functionwrappers)
self.cmdtable.update(other.cmdtable)
- for section, items in pycompat.iteritems(other.configtable):
+ for section, items in other.configtable.items():
if section in self.configtable:
self.configtable[section].update(items)
else: