2
0
Jelmer Vernooij 16 жил өмнө
parent
commit
0f1c1d9f97

+ 3 - 5
dulwich/pack.py

@@ -359,16 +359,14 @@ class PackData(object):
 
   def iterentries(self):
     found = {}
-    postponed = []
-    for offset, type, obj in self.iterobjects():
-      postponed.append((type, obj))
+    postponed = list(self.iterobjects())
     while postponed:
-      (type, obj) = postponed.pop()
+      (offset, type, obj) = postponed.pop()
       try:
         type, obj = resolve_object(offset, type, obj, found.__getitem__, 
             self.get_object_at)
       except KeyError:
-        postponed.append((type, obj))
+        postponed.append((offset, type, obj))
       else:
         shafile = ShaFile.from_raw_string(type, obj)
         sha = shafile.sha().digest()

+ 4 - 0
dulwich/tests/test_pack.py

@@ -110,6 +110,10 @@ class TestPackData(PackTests):
     p = self.get_pack_data(pack1_sha)
     self.assertEquals([(12, 1, 'tree b2a2766a2879c209ab1176e7e778b81ae422eeaa\nauthor James Westby <jw+debian@jameswestby.net> 1174945067 +0100\ncommitter James Westby <jw+debian@jameswestby.net> 1174945067 +0100\n\nTest commit\n'), (138, 2, '100644 a\x00og\x0c\x0f\xb5?\x94cv\x0br\x95\xfb\xb8\x14\xe9e\xfb \xc8'), (178, 3, 'test 1\n')], list(p.iterobjects()))
 
+  def test_iterentries(self):
+    p = self.get_pack_data(pack1_sha)
+    self.assertEquals([('og\x0c\x0f\xb5?\x94cv\x0br\x95\xfb\xb8\x14\xe9e\xfb \xc8', 178, -1718046665), ('\xb2\xa2vj(y\xc2\t\xab\x11v\xe7\xe7x\xb8\x1a\xe4"\xee\xaa', 138, -901046474), ('\xf1\x8f\xaa\x16S\x1a\xc5p\xa3\xfd\xc8\xc7\xca\x16h%H\xda\xfd\x12', 12, 1185722901)], list(p.iterentries()))
+
   def test_create_index_v1(self):
     p = self.get_pack_data(pack1_sha)
     p.create_index_v1("v1test.idx")