Skip to content
Snippets Groups Projects
Commit 28c9d67d authored by Augie Fackler's avatar Augie Fackler
Browse files

manifest: just duplicate the definition of items as iteritems

The forwarding trick was failing test-check-interfaces on Python
3. Duplicating a line of code is easy enough I'm doing that rather
than try and figure out what's going on in any kind of detail.

Differential Revision: https://phab.mercurial-scm.org/D3924
parent 531f5e93
Branches
Tags
No related merge requests found
......@@ -534,7 +534,8 @@
def items(self):
return (x[:2] for x in self._lm.iterentries())
iteritems = items
def iteritems(self):
return (x[:2] for x in self._lm.iterentries())
def iterentries(self):
return self._lm.iterentries()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment