mercurial/util.py
changeset 23260 565f97e71ce3
parent 23139 e53f6b72a0e4
child 23261 79858e66a7ce
--- a/mercurial/util.py	Sat Nov 08 23:13:39 2014 -0800
+++ b/mercurial/util.py	Sun Nov 09 13:15:28 2014 -0800
@@ -369,6 +369,9 @@
         return self._list
     def iterkeys(self):
         return self._list.__iter__()
+    def iteritems(self):
+        for k in self._list:
+            yield k, self[k]
 
 class lrucachedict(object):
     '''cache most recent gets from or sets to this dictionary'''